-rwxr-xr-x | noncore/apps/qashmoney/account.h | 4 | ||||
-rwxr-xr-x | noncore/apps/qashmoney/budget.h | 4 | ||||
-rwxr-xr-x | noncore/apps/qashmoney/memory.h | 4 | ||||
-rwxr-xr-x | noncore/apps/qashmoney/preferences.h | 4 | ||||
-rwxr-xr-x | noncore/apps/qashmoney/qashmoney.pro | 2 | ||||
-rwxr-xr-x | noncore/apps/qashmoney/transaction.h | 4 |
6 files changed, 11 insertions, 11 deletions
diff --git a/noncore/apps/qashmoney/account.h b/noncore/apps/qashmoney/account.h index f77f400..5bad4a1 100755 --- a/noncore/apps/qashmoney/account.h +++ b/noncore/apps/qashmoney/account.h | |||
@@ -1,13 +1,13 @@ | |||
1 | #ifndef ACCOUNT_H | 1 | #ifndef ACCOUNT_H |
2 | #define ACCOUNT_H | 2 | #define ACCOUNT_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qlistview.h> | 5 | #include <qlistview.h> |
6 | #include <qcombobox.h> | 6 | #include <qcombobox.h> |
7 | #include <sqlite.h> | 7 | #include <sqlite3.h> |
8 | 8 | ||
9 | class Account | 9 | class Account |
10 | { | 10 | { |
11 | public: | 11 | public: |
12 | 12 | ||
13 | Account (); | 13 | Account (); |
@@ -77,13 +77,13 @@ class Account | |||
77 | QString getAccountBalance ( int accountid ); | 77 | QString getAccountBalance ( int accountid ); |
78 | 78 | ||
79 | // returns account credit limit | 79 | // returns account credit limit |
80 | float getAccountCreditLimit ( int ); | 80 | float getAccountCreditLimit ( int ); |
81 | 81 | ||
82 | // The primary database that stores all our data | 82 | // The primary database that stores all our data |
83 | sqlite *adb; | 83 | sqlite3 *adb; |
84 | }; | 84 | }; |
85 | 85 | ||
86 | class GreyBackgroundItem : public QListViewItem | 86 | class GreyBackgroundItem : public QListViewItem |
87 | { | 87 | { |
88 | public: | 88 | public: |
89 | 89 | ||
diff --git a/noncore/apps/qashmoney/budget.h b/noncore/apps/qashmoney/budget.h index 16af26a..f82e048 100755 --- a/noncore/apps/qashmoney/budget.h +++ b/noncore/apps/qashmoney/budget.h | |||
@@ -1,13 +1,13 @@ | |||
1 | #ifndef BUDGET_H | 1 | #ifndef BUDGET_H |
2 | #define BUDGET_H | 2 | #define BUDGET_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qstringlist.h> | 5 | #include <qstringlist.h> |
6 | #include <qlistview.h> | 6 | #include <qlistview.h> |
7 | #include <sqlite.h> | 7 | #include <sqlite3.h> |
8 | 8 | ||
9 | class Budget | 9 | class Budget |
10 | { | 10 | { |
11 | public: | 11 | public: |
12 | 12 | ||
13 | Budget (); | 13 | Budget (); |
@@ -35,11 +35,11 @@ class Budget | |||
35 | void displayLineItems ( int budgetid, QListView *listview, int month, int year, int viewtype ); | 35 | void displayLineItems ( int budgetid, QListView *listview, int month, int year, int viewtype ); |
36 | void deleteLineItem ( int budgetid, int lineitemid ); | 36 | void deleteLineItem ( int budgetid, int lineitemid ); |
37 | int getLineItemTime ( int budgetid, int lineitemid ); | 37 | int getLineItemTime ( int budgetid, int lineitemid ); |
38 | float getLineItemAmount ( int budgetid, int lineitemid ); | 38 | float getLineItemAmount ( int budgetid, int lineitemid ); |
39 | 39 | ||
40 | private: | 40 | private: |
41 | sqlite *bdb; | 41 | sqlite3 *bdb; |
42 | }; | 42 | }; |
43 | 43 | ||
44 | #endif | 44 | #endif |
45 | 45 | ||
diff --git a/noncore/apps/qashmoney/memory.h b/noncore/apps/qashmoney/memory.h index 6f3f100..6e8ae46 100755 --- a/noncore/apps/qashmoney/memory.h +++ b/noncore/apps/qashmoney/memory.h | |||
@@ -1,13 +1,13 @@ | |||
1 | #ifndef MEMORY_H | 1 | #ifndef MEMORY_H |
2 | #define MEMORY_H | 2 | #define MEMORY_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qlistbox.h> | 5 | #include <qlistbox.h> |
6 | #include <qcombobox.h> | 6 | #include <qcombobox.h> |
7 | #include <sqlite.h> | 7 | #include <sqlite3.h> |
8 | 8 | ||
9 | class Memory : public QObject | 9 | class Memory : public QObject |
10 | { | 10 | { |
11 | 11 | ||
12 | Q_OBJECT | 12 | Q_OBJECT |
13 | 13 | ||
@@ -30,13 +30,13 @@ class Memory : public QObject | |||
30 | // This takes a QListView and puts parents and children memorys | 30 | // This takes a QListView and puts parents and children memorys |
31 | // into the list view | 31 | // into the list view |
32 | void displayMemoryItems ( QListBox * ); | 32 | void displayMemoryItems ( QListBox * ); |
33 | void displayMemoryItems ( QComboBox * ); | 33 | void displayMemoryItems ( QComboBox * ); |
34 | 34 | ||
35 | // The primary database that stores all our data | 35 | // The primary database that stores all our data |
36 | sqlite *db; | 36 | sqlite3 *db; |
37 | 37 | ||
38 | public slots: | 38 | public slots: |
39 | 39 | ||
40 | // Deletes a memory item. Takes the memoryid as its parameter | 40 | // Deletes a memory item. Takes the memoryid as its parameter |
41 | void deleteMemoryItem ( QString ); | 41 | void deleteMemoryItem ( QString ); |
42 | }; | 42 | }; |
diff --git a/noncore/apps/qashmoney/preferences.h b/noncore/apps/qashmoney/preferences.h index 10ec6e9..38579ad 100755 --- a/noncore/apps/qashmoney/preferences.h +++ b/noncore/apps/qashmoney/preferences.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #include <sqlite.h> | 1 | #include <sqlite3.h> |
2 | #include <qstring.h> | 2 | #include <qstring.h> |
3 | 3 | ||
4 | #ifndef PREFERENCES_H | 4 | #ifndef PREFERENCES_H |
5 | #define PREFERENCES_H | 5 | #define PREFERENCES_H |
6 | 6 | ||
7 | class Preferences | 7 | class Preferences |
@@ -26,13 +26,13 @@ class Preferences | |||
26 | // Changes a preference for the given ID | 26 | // Changes a preference for the given ID |
27 | void changePreference ( int , int ); | 27 | void changePreference ( int , int ); |
28 | void changeColumnPreference ( int id, int width ); | 28 | void changeColumnPreference ( int id, int width ); |
29 | void changeSortingPreference ( int id, int column ); | 29 | void changeSortingPreference ( int id, int column ); |
30 | 30 | ||
31 | // The primary database that stores all our data | 31 | // The primary database that stores all our data |
32 | sqlite *db; | 32 | sqlite3 *db; |
33 | 33 | ||
34 | // This function returns a Qstring for the year first date formats | 34 | // This function returns a Qstring for the year first date formats |
35 | // for displaying. It takes the date numbers | 35 | // for displaying. It takes the date numbers |
36 | QString getDate ( int, int, int ); | 36 | QString getDate ( int, int, int ); |
37 | QString getDate ( int y, int m ); | 37 | QString getDate ( int y, int m ); |
38 | 38 | ||
diff --git a/noncore/apps/qashmoney/qashmoney.pro b/noncore/apps/qashmoney/qashmoney.pro index 4222a25..faa898b 100755 --- a/noncore/apps/qashmoney/qashmoney.pro +++ b/noncore/apps/qashmoney/qashmoney.pro | |||
@@ -40,13 +40,13 @@ SOURCES = qashmoney.cpp \ | |||
40 | INCLUDEPATH = $(OPIEDIR)/include | 40 | INCLUDEPATH = $(OPIEDIR)/include |
41 | DEPENDPATH = $(OPIEDIR)/include | 41 | DEPENDPATH = $(OPIEDIR)/include |
42 | TARGET = qashmoney | 42 | TARGET = qashmoney |
43 | DESTDIR = $(OPIEDIR)/bin | 43 | DESTDIR = $(OPIEDIR)/bin |
44 | 44 | ||
45 | unix:LIBS += -lm | 45 | unix:LIBS += -lm |
46 | LIBS += -lqpe -lopiecore2 -lsqlite | 46 | LIBS += -lqpe -lopiecore2 -lsqlite3 |
47 | 47 | ||
48 | include ( $(OPIEDIR)/include.pro ) | 48 | include ( $(OPIEDIR)/include.pro ) |
49 | 49 | ||
50 | !isEmpty( LIBSQLITE_INC_DIR ) { | 50 | !isEmpty( LIBSQLITE_INC_DIR ) { |
51 | INCLUDEPATH = $$LIBSQLITE_INC_DIR $$INCLUDEPATH | 51 | INCLUDEPATH = $$LIBSQLITE_INC_DIR $$INCLUDEPATH |
52 | } | 52 | } |
diff --git a/noncore/apps/qashmoney/transaction.h b/noncore/apps/qashmoney/transaction.h index 5871555..3df43a8 100755 --- a/noncore/apps/qashmoney/transaction.h +++ b/noncore/apps/qashmoney/transaction.h | |||
@@ -1,13 +1,13 @@ | |||
1 | #ifndef TRANSACTION_H | 1 | #ifndef TRANSACTION_H |
2 | #define TRANSACTION_H | 2 | #define TRANSACTION_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qlistview.h> | 5 | #include <qlistview.h> |
6 | #include <qdatetime.h> | 6 | #include <qdatetime.h> |
7 | #include <sqlite.h> | 7 | #include <sqlite3.h> |
8 | 8 | ||
9 | #include "preferences.h" | 9 | #include "preferences.h" |
10 | 10 | ||
11 | class Transaction | 11 | class Transaction |
12 | { | 12 | { |
13 | public: | 13 | public: |
@@ -60,13 +60,13 @@ class Transaction | |||
60 | int getMonth ( int ); | 60 | int getMonth ( int ); |
61 | int getYear ( int ); | 61 | int getYear ( int ); |
62 | int getAccountID ( int id ); | 62 | int getAccountID ( int id ); |
63 | 63 | ||
64 | private: | 64 | private: |
65 | 65 | ||
66 | sqlite *tdb; | 66 | sqlite3 *tdb; |
67 | int rows, columns; | 67 | int rows, columns; |
68 | }; | 68 | }; |
69 | 69 | ||
70 | #endif | 70 | #endif |
71 | 71 | ||
72 | 72 | ||