summaryrefslogtreecommitdiff
path: root/noncore/tools/pimconverter/converter.h
authoreilers <eilers>2004-07-18 14:37:20 (UTC)
committer eilers <eilers>2004-07-18 14:37:20 (UTC)
commit30775961a5c33d4721395eb07d11c4fcc142ce96 (patch) (unidiff)
tree99858db337e64689f31b0099c48a26a41e1fc136 /noncore/tools/pimconverter/converter.h
parentf37561246bc7d8bf4cf791ce156afdf098552dca (diff)
downloadopie-30775961a5c33d4721395eb07d11c4fcc142ce96.zip
opie-30775961a5c33d4721395eb07d11c4fcc142ce96.tar.gz
opie-30775961a5c33d4721395eb07d11c4fcc142ce96.tar.bz2
Fixed bugreport #1370 and
added check, whether source and destdatabase is the same..
Diffstat (limited to 'noncore/tools/pimconverter/converter.h') (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/tools/pimconverter/converter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/tools/pimconverter/converter.h b/noncore/tools/pimconverter/converter.h
index 27d7fb2..a78c6bc 100755
--- a/noncore/tools/pimconverter/converter.h
+++ b/noncore/tools/pimconverter/converter.h
@@ -12,12 +12,14 @@ public:
12 // Slots defined in the ui-description file 12 // Slots defined in the ui-description file
13 void start_conversion(); 13 void start_conversion();
14 void selectedDatabase( int num ); 14 void selectedDatabase( int num );
15 void selectedDestFormat( int num ); 15 void selectedDestFormat( int num );
16 void selectedSourceFormat( int num ); 16 void selectedSourceFormat( int num );
17 17
18 void closeEvent( QCloseEvent *e );
19
18private: 20private:
19 // Caution: 21 // Caution:
20 // The order and value of the following enums must be regarding 22 // The order and value of the following enums must be regarding
21 // the predefinition in the UI-File !! 23 // the predefinition in the UI-File !!
22 enum DataBases{ 24 enum DataBases{
23 ADDRESSBOOK = 0, 25 ADDRESSBOOK = 0,
@@ -30,11 +32,12 @@ private:
30 SQL = 1, 32 SQL = 1,
31 }; 33 };
32 34
33 int m_selectedDatabase; 35 int m_selectedDatabase;
34 int m_selectedSourceFormat; 36 int m_selectedSourceFormat;
35 int m_selectedDestFormat; 37 int m_selectedDestFormat;
38 bool m_criticalState;
36 39
37}; 40};
38 41
39 42
40#endif 43#endif