-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 @@ -6,3 +6,3 @@ #include <qcombobox.h> -#include <sqlite.h> +#include <sqlite3.h> @@ -82,3 +82,3 @@ class Account // The primary database that stores all our data - sqlite *adb; + sqlite3 *adb; }; 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 @@ -6,3 +6,3 @@ #include <qlistview.h> -#include <sqlite.h> +#include <sqlite3.h> @@ -40,3 +40,3 @@ class Budget private: - sqlite *bdb; + sqlite3 *bdb; }; 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 @@ -6,3 +6,3 @@ #include <qcombobox.h> -#include <sqlite.h> +#include <sqlite3.h> @@ -35,3 +35,3 @@ class Memory : public QObject // The primary database that stores all our data - sqlite *db; + sqlite3 *db; 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,2 +1,2 @@ -#include <sqlite.h> +#include <sqlite3.h> #include <qstring.h> @@ -31,3 +31,3 @@ class Preferences // The primary database that stores all our data - sqlite *db; + sqlite3 *db; 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 @@ -45,3 +45,3 @@ DESTDIR = $(OPIEDIR)/bin unix:LIBS += -lm -LIBS += -lqpe -lopiecore2 -lsqlite +LIBS += -lqpe -lopiecore2 -lsqlite3 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 @@ -6,3 +6,3 @@ #include <qdatetime.h> -#include <sqlite.h> +#include <sqlite3.h> @@ -65,3 +65,3 @@ class Transaction - sqlite *tdb; + sqlite3 *tdb; int rows, columns; |