-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 @@ -3,9 +3,9 @@ #include <qstring.h> #include <qlistview.h> #include <qcombobox.h> -#include <sqlite.h> +#include <sqlite3.h> class Account { public: @@ -79,9 +79,9 @@ class Account // returns account credit limit float getAccountCreditLimit ( int ); // The primary database that stores all our data - sqlite *adb; + sqlite3 *adb; }; class GreyBackgroundItem : public QListViewItem { 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 @@ -3,9 +3,9 @@ #include <qstring.h> #include <qstringlist.h> #include <qlistview.h> -#include <sqlite.h> +#include <sqlite3.h> class Budget { public: @@ -37,9 +37,9 @@ class Budget int getLineItemTime ( int budgetid, int lineitemid ); float getLineItemAmount ( int budgetid, int lineitemid ); private: - sqlite *bdb; + sqlite3 *bdb; }; #endif 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 @@ -3,9 +3,9 @@ #include <qstring.h> #include <qlistbox.h> #include <qcombobox.h> -#include <sqlite.h> +#include <sqlite3.h> class Memory : public QObject { @@ -32,9 +32,9 @@ class Memory : public QObject void displayMemoryItems ( QListBox * ); void displayMemoryItems ( QComboBox * ); // The primary database that stores all our data - sqlite *db; + sqlite3 *db; public slots: // Deletes a memory item. Takes the memoryid as its parameter 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,5 +1,5 @@ -#include <sqlite.h> +#include <sqlite3.h> #include <qstring.h> #ifndef PREFERENCES_H #define PREFERENCES_H @@ -28,9 +28,9 @@ class Preferences void changeColumnPreference ( int id, int width ); void changeSortingPreference ( int id, int column ); // The primary database that stores all our data - sqlite *db; + sqlite3 *db; // This function returns a Qstring for the year first date formats // for displaying. It takes the date numbers QString getDate ( int, int, int ); 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 @@ -42,9 +42,9 @@ DEPENDPATH = $(OPIEDIR)/include TARGET = qashmoney DESTDIR = $(OPIEDIR)/bin unix:LIBS += -lm -LIBS += -lqpe -lopiecore2 -lsqlite +LIBS += -lqpe -lopiecore2 -lsqlite3 include ( $(OPIEDIR)/include.pro ) !isEmpty( LIBSQLITE_INC_DIR ) { 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 @@ -3,9 +3,9 @@ #include <qstring.h> #include <qlistview.h> #include <qdatetime.h> -#include <sqlite.h> +#include <sqlite3.h> #include "preferences.h" class Transaction @@ -62,9 +62,9 @@ class Transaction int getAccountID ( int id ); private: - sqlite *tdb; + sqlite3 *tdb; int rows, columns; }; #endif |