author | chicken <chicken> | 2004-11-02 19:46:53 (UTC) |
---|---|---|
committer | chicken <chicken> | 2004-11-02 19:46:53 (UTC) |
commit | 30c9ee6ca6442c66f02c004dd960b26eeab6dee2 (patch) (unidiff) | |
tree | 4e399ff17e29ae3b7769f69e926d76f7dfeb8128 | |
parent | 029fc220470de74b7c1a148c9ea934c17686149f (diff) | |
download | opie-30c9ee6ca6442c66f02c004dd960b26eeab6dee2.zip opie-30c9ee6ca6442c66f02c004dd960b26eeab6dee2.tar.gz opie-30c9ee6ca6442c66f02c004dd960b26eeab6dee2.tar.bz2 |
switching to sqlite3
-rwxr-xr-x | noncore/apps/qashmoney/budgetdisplay.cpp | 2 | ||||
-rwxr-xr-x | noncore/apps/qashmoney/transfer.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/noncore/apps/qashmoney/budgetdisplay.cpp b/noncore/apps/qashmoney/budgetdisplay.cpp index 3fc4e6c..b83eb46 100755 --- a/noncore/apps/qashmoney/budgetdisplay.cpp +++ b/noncore/apps/qashmoney/budgetdisplay.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | #include <qmessagebox.h> | 1 | #include <qmessagebox.h> |
2 | #include <qheader.h> | 2 | #include <qheader.h> |
3 | #include <sqlite.h> | 3 | #include <sqlite3.h> |
4 | 4 | ||
5 | #include "budgetdisplay.h" | 5 | #include "budgetdisplay.h" |
diff --git a/noncore/apps/qashmoney/transfer.h b/noncore/apps/qashmoney/transfer.h index e910e7c..cec3386 100755 --- a/noncore/apps/qashmoney/transfer.h +++ b/noncore/apps/qashmoney/transfer.h | |||
@@ -4,5 +4,5 @@ | |||
4 | #include <qlistview.h> | 4 | #include <qlistview.h> |
5 | #include <qstring.h> | 5 | #include <qstring.h> |
6 | #include <sqlite.h> | 6 | #include <sqlite3.h> |
7 | #include <qdatetime.h> | 7 | #include <qdatetime.h> |
8 | 8 | ||
@@ -44,5 +44,5 @@ class Transfer | |||
44 | private: | 44 | private: |
45 | 45 | ||
46 | sqlite *db; | 46 | sqlite3 *db; |
47 | }; | 47 | }; |
48 | 48 | ||