summaryrefslogtreecommitdiff
path: root/noncore/tools/pimconverter/converter.h
authorzecke <zecke>2004-10-23 21:51:16 (UTC)
committer zecke <zecke>2004-10-23 21:51:16 (UTC)
commit9c5964f8d2be467aa53d3d8255b499890556e320 (patch) (unidiff)
tree91507b2507cbfda0896541dde082e065444126df /noncore/tools/pimconverter/converter.h
parentcbcdbc9d68e493a4229b24a57075d617ae99ca70 (diff)
downloadopie-9c5964f8d2be467aa53d3d8255b499890556e320.zip
opie-9c5964f8d2be467aa53d3d8255b499890556e320.tar.gz
opie-9c5964f8d2be467aa53d3d8255b499890556e320.tar.bz2
-Move code for converting sqlite2 to sqlite3 to a method on its own
-Use Global::applicationFileName to get the filenames for the data -Use tr around messages -Do not use custom labels for "Ok" but use Qts QMessageBox ones to get its translation for free TODO: Test on ARM
Diffstat (limited to 'noncore/tools/pimconverter/converter.h') (more/less context) (ignore 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 9d75d79..e9035e7 100755
--- a/noncore/tools/pimconverter/converter.h
+++ b/noncore/tools/pimconverter/converter.h
@@ -31,16 +31,19 @@ private:
31 }; 31 };
32 32
33 enum DbFormats{ 33 enum DbFormats{
34 XML = 0, 34 XML = 0,
35 SQL = 1, 35 SQL = 1,
36 }; 36 };
37 37
38 int m_selectedDatabase; 38 int m_selectedDatabase;
39 int m_selectedSourceFormat; 39 int m_selectedSourceFormat;
40 int m_selectedDestFormat; 40 int m_selectedDestFormat;
41 bool m_criticalState; 41 bool m_criticalState;
42 42
43
44private:
45 static bool sqliteCopyAndConvert( const QString &src, const QString &destination, QString &lastCommand );
43}; 46};
44 47
45 48
46#endif 49#endif