summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/qashmoney/config.in4
-rwxr-xr-xnoncore/apps/qashmoney/qashmoney.pro8
-rwxr-xr-xnoncore/apps/qashmoney/transaction.cpp8
-rwxr-xr-xnoncore/apps/qashmoney/transfer.cpp4
-rw-r--r--packages1
5 files changed, 19 insertions, 6 deletions
diff --git a/noncore/apps/qashmoney/config.in b/noncore/apps/qashmoney/config.in
new file mode 100644
index 0000000..94c39b6
--- a/dev/null
+++ b/noncore/apps/qashmoney/config.in
@@ -0,0 +1,4 @@
1 config QASHMONEY
2 boolean "opie-qashmoney (money manager)"
3 default "n"
4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE
diff --git a/noncore/apps/qashmoney/qashmoney.pro b/noncore/apps/qashmoney/qashmoney.pro
index 1070767..8b4646a 100755
--- a/noncore/apps/qashmoney/qashmoney.pro
+++ b/noncore/apps/qashmoney/qashmoney.pro
@@ -1,41 +1,49 @@
1TEMPLATE = app 1TEMPLATE = app
2CONFIG = qt warn_on release 2CONFIG = qt warn_on release
3 HEADERS =qashmoney.h \ 3 HEADERS =qashmoney.h \
4 accountdisplay.h \ 4 accountdisplay.h \
5 account.h \ 5 account.h \
6 transaction.h \ 6 transaction.h \
7 transactiondisplay.h \ 7 transactiondisplay.h \
8 newtransaction.h \ 8 newtransaction.h \
9 transfer.h \ 9 transfer.h \
10 transferdialog.h \ 10 transferdialog.h \
11 preferences.h \ 11 preferences.h \
12 preferencedialogs.h \ 12 preferencedialogs.h \
13 memory.h \ 13 memory.h \
14 memorydialog.h \ 14 memorydialog.h \
15 newaccount.h \ 15 newaccount.h \
16 calculator.h \ 16 calculator.h \
17 datepicker.h \ 17 datepicker.h \
18 budget.h \ 18 budget.h \
19 budgetdisplay.h \ 19 budgetdisplay.h \
20 currency.h 20 currency.h
21 SOURCES =qashmoney.cpp \ 21 SOURCES =qashmoney.cpp \
22 accountdisplay.cpp \ 22 accountdisplay.cpp \
23 account.cpp \ 23 account.cpp \
24 transaction.cpp \ 24 transaction.cpp \
25 transactiondisplay.cpp \ 25 transactiondisplay.cpp \
26 newtransaction.cpp \ 26 newtransaction.cpp \
27 transfer.cpp \ 27 transfer.cpp \
28 transferdialog.cpp \ 28 transferdialog.cpp \
29 preferences.cpp \ 29 preferences.cpp \
30 preferencedialogs.cpp \ 30 preferencedialogs.cpp \
31 memory.cpp \ 31 memory.cpp \
32 memorydialog.cpp \ 32 memorydialog.cpp \
33 newaccount.cpp \ 33 newaccount.cpp \
34 calculator.cpp \ 34 calculator.cpp \
35 datepicker.cpp \ 35 datepicker.cpp \
36 main.cpp \ 36 main.cpp \
37 budget.cpp \ 37 budget.cpp \
38 budgetdisplay.cpp \ 38 budgetdisplay.cpp \
39 currency.cpp 39 currency.cpp
40INCLUDEPATH = $(OPIEDIR)/include
41DEPENDPATH = $(OPIEDIR)/include
42
43DESTDIR = $(OPIEDIR)/bin
44
40unix:LIBS += -lm 45unix:LIBS += -lm
41LIBS += -lqpe -lqte -lstdc++ -lsqlite 46LIBS += -lqpe -lqte -lstdc++ -lsqlite
47
48include ( $(OPIEDIR)/include.pro )
49
diff --git a/noncore/apps/qashmoney/transaction.cpp b/noncore/apps/qashmoney/transaction.cpp
index a3bd9e7..dcf46b1 100755
--- a/noncore/apps/qashmoney/transaction.cpp
+++ b/noncore/apps/qashmoney/transaction.cpp
@@ -1,131 +1,131 @@
1// RESERVEDONE COLUMN NAME REPRESENTS THE LINEITEMID AND SHOULD BE CHANGED IN 1// RESERVEDONE COLUMN NAME REPRESENTS THE LINEITEMID AND SHOULD BE CHANGED IN
2// FUTURE VERSIONS OF QASHMONEY 2// FUTURE VERSIONS OF QASHMONEY
3 3
4// RESERVEDTWO REPRESENTS THE TRANSACTION DESCRIPTION 4// RESERVEDTWO REPRESENTS THE TRANSACTION DESCRIPTION
5 5
6#include "transaction.h" 6#include "transaction.h"
7#include "account.h" 7#include "account.h"
8#include "transactiondisplay.h" 8#include "transactiondisplay.h"
9 9
10#include <stdlib.h> 10#include <stdlib.h>
11#include <iostream.h> 11#include <iostream.h>
12 12
13extern Account *account; 13extern Account *account;
14extern Preferences *preferences; 14extern Preferences *preferences;
15 15
16Transaction::Transaction () 16Transaction::Transaction ()
17 { 17 {
18 tdb = sqlite_open ( "qmtransactions.db", 0, NULL ); 18 tdb = sqlite_open ( "qmtransactions.db", 0, NULL );
19 } 19 }
20 20
21Transaction::~Transaction () 21Transaction::~Transaction ()
22 { 22 {
23 sqlite_close ( tdb ); 23 sqlite_close ( tdb );
24 } 24 }
25 25
26void Transaction::addTransaction ( QString description, QString payee, int accountid, int parentid, int number, int day, int month, int year, float amount, int cleared, int budgetid, int lineitemid ) 26void Transaction::addTransaction ( QString description, QString payee, int accountid, int parentid, int number, int day, int month, int year, float amount, int cleared, int budgetid, int lineitemid )
27 { 27 {
28 sqlite_exec_printf ( tdb, "insert into transactions values ( '%q', %i, %i, %i, %i, %i, %i, %.2f, %i, %i, 0, 0, 0, 0, 0, 0, %i, '%q', 0, 28 sqlite_exec_printf ( tdb, "insert into transactions values ( '%q', %i, %i, %i, %i, %i, %i, %.2f, %i, %i, 0, 0, 0, 0, 0, 0, %i, '%q', 0, "
29 0, 0, 0, NULL );", 0, 0, 0, ( const char * ) payee, accountid, parentid, number, day, month, year, amount, cleared, budgetid, lineitemid, ( const char * ) description ); 29 "0, 0, 0, NULL );", 0, 0, 0, ( const char * ) payee, accountid, parentid, number, day, month, year, amount, cleared, budgetid, lineitemid, ( const char * ) description );
30 } 30 }
31 31
32void Transaction::updateTransaction ( QString description, QString payee, int number, int day, int month, int year, float amount, int cleared, int budgetid, int lineitemid, int transactionid ) 32void Transaction::updateTransaction ( QString description, QString payee, int number, int day, int month, int year, float amount, int cleared, int budgetid, int lineitemid, int transactionid )
33 { 33 {
34 sqlite_exec_printf ( tdb, "update transactions set reservedtwo = '%q', payee = '%q', number = %i, day = %i, month = %i, year = %i, amount = %.2f, 34 sqlite_exec_printf ( tdb, "update transactions set reservedtwo = '%q', payee = '%q', number = %i, day = %i, month = %i, year = %i, amount = %.2f,"
35 cleared = %i, budgetid = %i, reservedone = %i where transid = %i;", 0, 0, 0, ( const char * ) description, ( const char * ) payee, number, day, month, year, 35 "cleared = %i, budgetid = %i, reservedone = %i where transid = %i;", 0, 0, 0, ( const char * ) description, ( const char * ) payee, number, day, month, year,
36 amount, cleared, budgetid, lineitemid, transactionid ); 36 amount, cleared, budgetid, lineitemid, transactionid );
37 } 37 }
38 38
39void Transaction::deleteTransaction ( int transid ) 39void Transaction::deleteTransaction ( int transid )
40 { 40 {
41 sqlite_exec_printf ( tdb, "delete from transactions where transid = %i;", 0, 0, 0, transid ); 41 sqlite_exec_printf ( tdb, "delete from transactions where transid = %i;", 0, 0, 0, transid );
42 } 42 }
43 43
44void Transaction::deleteAllTransactions ( int accountid ) 44void Transaction::deleteAllTransactions ( int accountid )
45 { 45 {
46 sqlite_exec_printf ( tdb, "delete from transactions where accountid = %i;", 0, 0, 0, accountid ); 46 sqlite_exec_printf ( tdb, "delete from transactions where accountid = %i;", 0, 0, 0, accountid );
47 } 47 }
48 48
49int Transaction::getAccountID ( int id ) 49int Transaction::getAccountID ( int id )
50 { 50 {
51 char **results; 51 char **results;
52 sqlite_get_table_printf ( tdb, "select accountid from transactions where transid= %i;", &results, NULL, NULL, NULL, id ); 52 sqlite_get_table_printf ( tdb, "select accountid from transactions where transid= %i;", &results, NULL, NULL, NULL, id );
53 return atol ( results [ 1 ] ); 53 return atol ( results [ 1 ] );
54 } 54 }
55 55
56int Transaction::getNumberOfTransactions () 56int Transaction::getNumberOfTransactions ()
57 { 57 {
58 char **results; 58 char **results;
59 sqlite_get_table ( tdb, "select count() from transactions;", &results, NULL, NULL, NULL ); 59 sqlite_get_table ( tdb, "select count() from transactions;", &results, NULL, NULL, NULL );
60 return atoi ( results [ 1 ] ); 60 return atoi ( results [ 1 ] );
61 } 61 }
62 62
63int Transaction::getNumberOfTransactions ( int accountid ) 63int Transaction::getNumberOfTransactions ( int accountid )
64 { 64 {
65 char **results; 65 char **results;
66 sqlite_get_table_printf ( tdb, "select count() from transactions where accountid = %i;", &results, NULL, NULL, NULL, accountid ); 66 sqlite_get_table_printf ( tdb, "select count() from transactions where accountid = %i;", &results, NULL, NULL, NULL, accountid );
67 return atol ( results [ 1 ] ); 67 return atol ( results [ 1 ] );
68 } 68 }
69 69
70QString Transaction::getPayee ( int id ) 70QString Transaction::getPayee ( int id )
71 { 71 {
72 char **results; 72 char **results;
73 sqlite_get_table_printf ( tdb, "select payee from transactions where transid= %i;", &results, NULL, NULL, NULL, id ); 73 sqlite_get_table_printf ( tdb, "select payee from transactions where transid= %i;", &results, NULL, NULL, NULL, id );
74 return results [ 1 ]; 74 return results [ 1 ];
75 } 75 }
76 76
77QString Transaction::getTransactionDescription ( int id ) 77QString Transaction::getTransactionDescription ( int id )
78 { 78 {
79 char **results; 79 char **results;
80 sqlite_get_table_printf ( tdb, "select reservedtwo from transactions where transid= %i;", &results, NULL, NULL, NULL, id ); 80 sqlite_get_table_printf ( tdb, "select reservedtwo from transactions where transid= %i;", &results, NULL, NULL, NULL, id );
81 return results [ 1 ]; 81 return results [ 1 ];
82 } 82 }
83 83
84QString Transaction::getNumber ( int id ) 84QString Transaction::getNumber ( int id )
85 { 85 {
86 char **results; 86 char **results;
87 sqlite_get_table_printf ( tdb, "select number from transactions where transid= %i;", &results, NULL, NULL, NULL, id ); 87 sqlite_get_table_printf ( tdb, "select number from transactions where transid= %i;", &results, NULL, NULL, NULL, id );
88 return results [ 1 ]; 88 return results [ 1 ];
89 } 89 }
90 90
91QString Transaction::getAmount ( int id ) 91QString Transaction::getAmount ( int id )
92 { 92 {
93 char **results; 93 char **results;
94 sqlite_get_table_printf ( tdb, "select amount from transactions where transid= %i;", &results, NULL, NULL, NULL, id ); 94 sqlite_get_table_printf ( tdb, "select amount from transactions where transid= %i;", &results, NULL, NULL, NULL, id );
95 return results [ 1 ]; 95 return results [ 1 ];
96 } 96 }
97 97
98QString Transaction::getAbsoluteAmount ( int id ) 98QString Transaction::getAbsoluteAmount ( int id )
99 { 99 {
100 char **results; 100 char **results;
101 sqlite_get_table_printf ( tdb, "select abs ( amount ) from transactions where transid= %i;", &results, NULL, NULL, NULL, id ); 101 sqlite_get_table_printf ( tdb, "select abs ( amount ) from transactions where transid= %i;", &results, NULL, NULL, NULL, id );
102 return results [ 1 ]; 102 return results [ 1 ];
103 } 103 }
104 104
105int Transaction::getCleared ( int id ) 105int Transaction::getCleared ( int id )
106 { 106 {
107 char **results; 107 char **results;
108 sqlite_get_table_printf ( tdb, "select cleared from transactions where transid= %i;", &results, NULL, NULL, NULL, id ); 108 sqlite_get_table_printf ( tdb, "select cleared from transactions where transid= %i;", &results, NULL, NULL, NULL, id );
109 QString cleared = results [ 1 ]; 109 QString cleared = results [ 1 ];
110 return cleared.toInt(); 110 return cleared.toInt();
111 } 111 }
112 112
113void Transaction::setCleared ( int id, int cleared ) 113void Transaction::setCleared ( int id, int cleared )
114 { 114 {
115 sqlite_exec_printf ( tdb, "update transactions set cleared = %i where transid = %i;", 0, 0, 0, cleared, id ); 115 sqlite_exec_printf ( tdb, "update transactions set cleared = %i where transid = %i;", 0, 0, 0, cleared, id );
116 } 116 }
117 117
118int Transaction::getBudgetID ( int id ) 118int Transaction::getBudgetID ( int id )
119 { 119 {
120 char **results; 120 char **results;
121 sqlite_get_table_printf ( tdb, "select budgetid from transactions where transid = %i;", &results, NULL, NULL, NULL, id ); 121 sqlite_get_table_printf ( tdb, "select budgetid from transactions where transid = %i;", &results, NULL, NULL, NULL, id );
122 QString budgetid = results [ 1 ]; 122 QString budgetid = results [ 1 ];
123 return budgetid.toInt(); 123 return budgetid.toInt();
124 } 124 }
125 125
126int Transaction::getLineItemID ( int id ) 126int Transaction::getLineItemID ( int id )
127 { 127 {
128 char **results; 128 char **results;
129 sqlite_get_table_printf ( tdb, "select reservedone from transactions where transid = %i;", &results, NULL, NULL, NULL, id ); 129 sqlite_get_table_printf ( tdb, "select reservedone from transactions where transid = %i;", &results, NULL, NULL, NULL, id );
130 QString lineitemid = results [ 1 ]; 130 QString lineitemid = results [ 1 ];
131 return lineitemid.toInt(); 131 return lineitemid.toInt();
diff --git a/noncore/apps/qashmoney/transfer.cpp b/noncore/apps/qashmoney/transfer.cpp
index 568d584..c4bbaf9 100755
--- a/noncore/apps/qashmoney/transfer.cpp
+++ b/noncore/apps/qashmoney/transfer.cpp
@@ -1,133 +1,133 @@
1#include "transfer.h" 1#include "transfer.h"
2#include "account.h" 2#include "account.h"
3#include "transactiondisplay.h" 3#include "transactiondisplay.h"
4#include <stdlib.h> 4#include <stdlib.h>
5#include <iostream.h> 5#include <iostream.h>
6 6
7extern Account *account; 7extern Account *account;
8extern Preferences *preferences; 8extern Preferences *preferences;
9 9
10Transfer::Transfer () 10Transfer::Transfer ()
11 { 11 {
12 db = sqlite_open ( "qmtransfers.db", 0, 0 ); 12 db = sqlite_open ( "qmtransfers.db", 0, 0 );
13 } 13 }
14 14
15Transfer::~Transfer () 15Transfer::~Transfer ()
16 { 16 {
17 sqlite_close ( db ); 17 sqlite_close ( db );
18 } 18 }
19 19
20void Transfer::addTransfer ( int fromaccount, int fromparent, int toaccount, int toparent, int day, int month, int year, float amount, int cleared ) 20void Transfer::addTransfer ( int fromaccount, int fromparent, int toaccount, int toparent, int day, int month, int year, float amount, int cleared )
21 { 21 {
22 int nextrowid = -1; 22 int nextrowid = -1;
23 char **results; 23 char **results;
24 sqlite_get_table ( db, "select count() from transfers;", &results, 0, 0, 0 ); 24 sqlite_get_table ( db, "select count() from transfers;", &results, 0, 0, 0 );
25 if ( atoi ( results [ 1 ] ) != 0 ) 25 if ( atoi ( results [ 1 ] ) != 0 )
26 { 26 {
27 char **results; 27 char **results;
28 sqlite_get_table ( db, "select min ( rowid ) from transfers;", &results, 0, 0, 0 ); 28 sqlite_get_table ( db, "select min ( rowid ) from transfers;", &results, 0, 0, 0 );
29 nextrowid = ( atoi ( results [ 1 ] ) ) - 1; 29 nextrowid = ( atoi ( results [ 1 ] ) ) - 1;
30 } 30 }
31 sqlite_exec_printf ( db, "insert into transfers values ( %i, %i, %i, %i, %i, %i, %i, 0, 0, %.2f, %i, 0, 0, 0, 0, 0, %i );", 0, 0, 0, fromaccount, fromparent, toaccount, toparent, day, month, year, amount, cleared, nextrowid ); 31 sqlite_exec_printf ( db, "insert into transfers values ( %i, %i, %i, %i, %i, %i, %i, 0, 0, %.2f, %i, 0, 0, 0, 0, 0, %i );", 0, 0, 0, fromaccount, fromparent, toaccount, toparent, day, month, year, amount, cleared, nextrowid );
32 } 32 }
33 33
34void Transfer::updateTransfer ( int fromaccount, int fromparent, int toaccount, int toparent, int day, int month, int year, float amount, int cleared, int transferid ) 34void Transfer::updateTransfer ( int fromaccount, int fromparent, int toaccount, int toparent, int day, int month, int year, float amount, int cleared, int transferid )
35 { 35 {
36 sqlite_exec_printf ( db, "update transfers set fromaccount = %i, fromparent = %i, toaccount = %i, toparent = %i, day = %i, month = %i, year = %i, 36 sqlite_exec_printf ( db, "update transfers set fromaccount = %i, fromparent = %i, toaccount = %i, toparent = %i, day = %i, month = %i, year = %i,"
37 amount = %.2f, cleared = %i where transferid = %i;", 0, 0, 0, fromaccount, fromparent, toaccount, toparent, day, month, year, amount, cleared, transferid ); 37 "amount = %.2f, cleared = %i where transferid = %i;", 0, 0, 0, fromaccount, fromparent, toaccount, toparent, day, month, year, amount, cleared, transferid );
38 } 38 }
39 39
40void Transfer::deleteTransfer ( int transferid ) 40void Transfer::deleteTransfer ( int transferid )
41 { 41 {
42 sqlite_exec_printf ( db, "delete from transfers where transferid = %i;", 0, 0, 0, transferid ); 42 sqlite_exec_printf ( db, "delete from transfers where transferid = %i;", 0, 0, 0, transferid );
43 } 43 }
44 44
45void Transfer::deleteAllTransfers ( int accountid ) 45void Transfer::deleteAllTransfers ( int accountid )
46 { 46 {
47 sqlite_exec_printf ( db, "delete from transfers where fromaccount = %i;", 0, 0, 0, accountid ); 47 sqlite_exec_printf ( db, "delete from transfers where fromaccount = %i;", 0, 0, 0, accountid );
48 sqlite_exec_printf ( db, "delete from transfers where toaccount = %i;", 0, 0, 0, accountid ); 48 sqlite_exec_printf ( db, "delete from transfers where toaccount = %i;", 0, 0, 0, accountid );
49 } 49 }
50 50
51int Transfer::getNumberOfTransfers () 51int Transfer::getNumberOfTransfers ()
52 { 52 {
53 char **results; 53 char **results;
54 sqlite_get_table ( db, "select count() from transfers;", &results, 0, 0, 0 ); 54 sqlite_get_table ( db, "select count() from transfers;", &results, 0, 0, 0 );
55 return atoi ( results [ 1 ] ); 55 return atoi ( results [ 1 ] );
56 } 56 }
57 57
58int Transfer::getNumberOfTransfers ( int accountid ) 58int Transfer::getNumberOfTransfers ( int accountid )
59 { 59 {
60 char **results; 60 char **results;
61 sqlite_get_table_printf ( db, "select count() from transfers where fromaccount = %i;", &results, 0, 0, 0, accountid ); 61 sqlite_get_table_printf ( db, "select count() from transfers where fromaccount = %i;", &results, 0, 0, 0, accountid );
62 int transfers = atoi ( results [ 1 ] ); 62 int transfers = atoi ( results [ 1 ] );
63 sqlite_get_table_printf ( db, "select count() from transfers where toaccount = %i;", &results, 0, 0, 0, accountid ); 63 sqlite_get_table_printf ( db, "select count() from transfers where toaccount = %i;", &results, 0, 0, 0, accountid );
64 transfers = transfers + atoi ( results [ 1 ] ); 64 transfers = transfers + atoi ( results [ 1 ] );
65 return transfers; 65 return transfers;
66 } 66 }
67 67
68void Transfer::displayTransfers ( QListView *listview, int accountid, bool children, QDate displaydate ) 68void Transfer::displayTransfers ( QListView *listview, int accountid, bool children, QDate displaydate )
69 { 69 {
70 int showcleared = preferences->getPreference ( 3 ); 70 int showcleared = preferences->getPreference ( 3 );
71 71
72 // select the from transfers to display 72 // select the from transfers to display
73 char **results; 73 char **results;
74 int rows, columns; 74 int rows, columns;
75 if ( account->getParentAccountID ( accountid ) == -1 && children == TRUE ) 75 if ( account->getParentAccountID ( accountid ) == -1 && children == TRUE )
76 { 76 {
77 if ( showcleared == 0 ) 77 if ( showcleared == 0 )
78 sqlite_get_table_printf ( db, "select day, month, year, amount, transferid, fromaccount, toaccount from transfers where cleared = 0 and toparent = %i;", &results, &rows, &columns, 0, accountid ); 78 sqlite_get_table_printf ( db, "select day, month, year, amount, transferid, fromaccount, toaccount from transfers where cleared = 0 and toparent = %i;", &results, &rows, &columns, 0, accountid );
79 else 79 else
80 sqlite_get_table_printf ( db, "select day, month, year, amount, transferid, fromaccount, toaccount from transfers where toparent = %i;", &results, &rows, &columns, 0, accountid ); 80 sqlite_get_table_printf ( db, "select day, month, year, amount, transferid, fromaccount, toaccount from transfers where toparent = %i;", &results, &rows, &columns, 0, accountid );
81 } 81 }
82 else 82 else
83 { 83 {
84 if ( showcleared == 0 ) 84 if ( showcleared == 0 )
85 sqlite_get_table_printf ( db, "select day, month, year, amount, transferid, fromaccount, toaccount from transfers where cleared = 0 and toaccount = %i;", &results, &rows, &columns, 0, accountid ); 85 sqlite_get_table_printf ( db, "select day, month, year, amount, transferid, fromaccount, toaccount from transfers where cleared = 0 and toaccount = %i;", &results, &rows, &columns, 0, accountid );
86 else 86 else
87 sqlite_get_table_printf ( db, "select day, month, year, amount, transferid, fromaccount, toaccount from transfers where toaccount = %i;", &results, &rows, &columns, 0, accountid ); 87 sqlite_get_table_printf ( db, "select day, month, year, amount, transferid, fromaccount, toaccount from transfers where toaccount = %i;", &results, &rows, &columns, 0, accountid );
88 } 88 }
89 89
90 // iterate through the list and display the from items 90 // iterate through the list and display the from items
91 int counter = 7; 91 int counter = 7;
92 int position = 0; 92 int position = 0;
93 while ( counter < ( ( rows + 1 ) * columns ) ) 93 while ( counter < ( ( rows + 1 ) * columns ) )
94 { 94 {
95 // construct the date 95 // construct the date
96 QString daystring = results [ counter ]; 96 QString daystring = results [ counter ];
97 int day = daystring.toInt (); 97 int day = daystring.toInt ();
98 QString monthstring = results [ counter + 1 ]; 98 QString monthstring = results [ counter + 1 ];
99 int month = monthstring.toInt (); 99 int month = monthstring.toInt ();
100 QString yearstring = results [ counter + 2 ]; 100 QString yearstring = results [ counter + 2 ];
101 int year = yearstring.toInt (); 101 int year = yearstring.toInt ();
102 QString date = preferences->getDate ( year, month, day ); 102 QString date = preferences->getDate ( year, month, day );
103 QDate testdate ( year, month, day ); 103 QDate testdate ( year, month, day );
104 104
105 //construct the amount and id strings 105 //construct the amount and id strings
106 QString amount = results [ counter + 3 ]; 106 QString amount = results [ counter + 3 ];
107 QString id = results [ counter + 4 ]; 107 QString id = results [ counter + 4 ];
108 108
109 // construct the transaction name 109 // construct the transaction name
110 QString transactionname = "FROM: "; 110 QString transactionname = "FROM: ";
111 QString temp1 = results [ counter + 5 ]; 111 QString temp1 = results [ counter + 5 ];
112 transactionname.append ( account->getAccountName ( temp1.toInt() ) ); 112 transactionname.append ( account->getAccountName ( temp1.toInt() ) );
113 113
114 QString toaccount = account->getAccountName ( atol ( results [ counter + 6 ] ) ); 114 QString toaccount = account->getAccountName ( atol ( results [ counter + 6 ] ) );
115 115
116 if ( testdate >= displaydate || showcleared == 0 ) 116 if ( testdate >= displaydate || showcleared == 0 )
117 { 117 {
118 // display this transfer 118 // display this transfer
119 if ( account->getParentAccountID ( accountid ) == -1 ) 119 if ( account->getParentAccountID ( accountid ) == -1 )
120 { 120 {
121 if ( showcleared == 1 && getCleared ( id.toInt() ) == 1 ) 121 if ( showcleared == 1 && getCleared ( id.toInt() ) == 1 )
122 ColorListItem *item = new ColorListItem ( listview, date, transactionname, amount, id, toaccount ); 122 ColorListItem *item = new ColorListItem ( listview, date, transactionname, amount, id, toaccount );
123 else 123 else
124 QListViewItem *item = new QListViewItem ( listview, date, transactionname, amount, id, toaccount ); 124 QListViewItem *item = new QListViewItem ( listview, date, transactionname, amount, id, toaccount );
125 } 125 }
126 else 126 else
127 { 127 {
128 if ( showcleared == 1 && getCleared ( id.toInt() ) == 1 ) 128 if ( showcleared == 1 && getCleared ( id.toInt() ) == 1 )
129 ColorListItem *item = new ColorListItem ( listview, date, transactionname, amount, id ); 129 ColorListItem *item = new ColorListItem ( listview, date, transactionname, amount, id );
130 else 130 else
131 QListViewItem *item = new QListViewItem ( listview, date, transactionname, amount, id ); 131 QListViewItem *item = new QListViewItem ( listview, date, transactionname, amount, id );
132 } 132 }
133 } 133 }
diff --git a/packages b/packages
index c48eee8..0e6340f 100644
--- a/packages
+++ b/packages
@@ -27,165 +27,166 @@ CONFIG_DASHER inputmethods/dasher dasher.pro
27 CONFIG_DATEBOOK core/pim/datebookdatebook.pro 27 CONFIG_DATEBOOK core/pim/datebookdatebook.pro
28 CONFIG_DECO_FLAT noncore/decorations/flatflat.pro 28 CONFIG_DECO_FLAT noncore/decorations/flatflat.pro
29 CONFIG_DECO_LIQUID noncore/decorations/liquidliquid.pro 29 CONFIG_DECO_LIQUID noncore/decorations/liquidliquid.pro
30 CONFIG_DECO_POLISHED noncore/decorations/polishedpolished.pro 30 CONFIG_DECO_POLISHED noncore/decorations/polishedpolished.pro
31 CONFIG_DICTIONARY noncore/apps/dictionarydictionary.pro 31 CONFIG_DICTIONARY noncore/apps/dictionarydictionary.pro
32 CONFIG_DRAWPAD noncore/graphics/drawpaddrawpad.pro 32 CONFIG_DRAWPAD noncore/graphics/drawpaddrawpad.pro
33 CONFIG_DVORAK inputmethods/dvorakdvorak.pro 33 CONFIG_DVORAK inputmethods/dvorakdvorak.pro
34 CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsoleembeddedkonsole.pro 34 CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsoleembeddedkonsole.pro
35 CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro 35 CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro
36 CONFIG_FIFTEEN noncore/games/fifteenfifteen.pro 36 CONFIG_FIFTEEN noncore/games/fifteenfifteen.pro
37 CONFIG_FILEBROWSER core/apps/filebrowserfilebrowser.pro 37 CONFIG_FILEBROWSER core/apps/filebrowserfilebrowser.pro
38 CONFIG_FLAT noncore/styles/flatflat.pro 38 CONFIG_FLAT noncore/styles/flatflat.pro
39 CONFIG_FORMATTER noncore/tools/formatterformatter.pro 39 CONFIG_FORMATTER noncore/tools/formatterformatter.pro
40 CONFIG_FREETYPE freetypefreetype.pro 40 CONFIG_FREETYPE freetypefreetype.pro
41 CONFIG_FRESH noncore/styles/freshfresh.pro 41 CONFIG_FRESH noncore/styles/freshfresh.pro
42 CONFIG_FTPLIB noncore/net/ftplibftplib.pro 42 CONFIG_FTPLIB noncore/net/ftplibftplib.pro
43 CONFIG_GO noncore/games/gogo.pro 43 CONFIG_GO noncore/games/gogo.pro
44 CONFIG_GSMTOOL noncore/comm/gsmtoolgsmtool.pro 44 CONFIG_GSMTOOL noncore/comm/gsmtoolgsmtool.pro
45 CONFIG_HANDWRITING inputmethods/handwritinghandwriting.pro 45 CONFIG_HANDWRITING inputmethods/handwritinghandwriting.pro
46 CONFIG_HELPBROWSER core/apps/helpbrowserhelpbrowser.pro 46 CONFIG_HELPBROWSER core/apps/helpbrowserhelpbrowser.pro
47 CONFIG_HOMEAPPLET core/applets/homeapplethomeapplet.pro 47 CONFIG_HOMEAPPLET core/applets/homeapplethomeapplet.pro
48 CONFIG_INTERFACES noncore/settings/networksettings/interfacesinterfaces.pro 48 CONFIG_INTERFACES noncore/settings/networksettings/interfacesinterfaces.pro
49 CONFIG_IRDAAPPLET core/applets/irdaappletirdaapplet.pro 49 CONFIG_IRDAAPPLET core/applets/irdaappletirdaapplet.pro
50 CONFIG_JUMPX inputmethods/jumpxjumpx.pro 50 CONFIG_JUMPX inputmethods/jumpxjumpx.pro
51 CONFIG_KBILL noncore/games/kbillkbill.pro 51 CONFIG_KBILL noncore/games/kbillkbill.pro
52 CONFIG_KCHECKERS noncore/games/kcheckerskcheckers.pro 52 CONFIG_KCHECKERS noncore/games/kcheckerskcheckers.pro
53 CONFIG_KEYBOARD inputmethods/keyboardkeyboard.pro 53 CONFIG_KEYBOARD inputmethods/keyboardkeyboard.pro
54 CONFIG_KEYPEBBLE noncore/comm/keypebblekeypebble.pro 54 CONFIG_KEYPEBBLE noncore/comm/keypebblekeypebble.pro
55 CONFIG_KEYVIEW development/keyviewkeyview.pro 55 CONFIG_KEYVIEW development/keyviewkeyview.pro
56 CONFIG_KJUMPX inputmethods/kjumpxkjumpx.pro 56 CONFIG_KJUMPX inputmethods/kjumpxkjumpx.pro
57 CONFIG_KPACMAN noncore/games/kpacmankpacman.pro 57 CONFIG_KPACMAN noncore/games/kpacmankpacman.pro
58 CONFIG_LANGUAGE noncore/settings/languagelanguage.pro 58 CONFIG_LANGUAGE noncore/settings/languagelanguage.pro
59 CONFIG_LAUNCHER-SETTINGS core/settings/launcherlauncher.pro 59 CONFIG_LAUNCHER-SETTINGS core/settings/launcherlauncher.pro
60 CONFIG_LAUNCHER_CORE core/launcherserver.pro 60 CONFIG_LAUNCHER_CORE core/launcherserver.pro
61 CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeglibffmpeg.pro 61 CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeglibffmpeg.pro
62 CONFIG_LIBFLASH core/multimedia/opieplayer/libflashlibflash.pro 62 CONFIG_LIBFLASH core/multimedia/opieplayer/libflashlibflash.pro
63CONFIG_LIBKATE noncore/apps/tinykate/libkate libkate.pro 63CONFIG_LIBKATE noncore/apps/tinykate/libkate libkate.pro
64 CONFIG_LIBMAD core/multimedia/opieplayer/libmadlibmad.pro 64 CONFIG_LIBMAD core/multimedia/opieplayer/libmadlibmad.pro
65 CONFIG_LIBMAIL noncore/mail/libmaillibmail.pro 65 CONFIG_LIBMAIL noncore/mail/libmaillibmail.pro
66 CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3libmpeg3.pro 66 CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3libmpeg3.pro
67 CONFIG_LIBOPIE libopielibopie.pro 67 CONFIG_LIBOPIE libopielibopie.pro
68 CONFIG_LIBOPIE2CORE libopie2/opiecoreopiecore.pro 68 CONFIG_LIBOPIE2CORE libopie2/opiecoreopiecore.pro
69 CONFIG_LIBOPIE2DB libopie2/opiedbopiedb.pro 69 CONFIG_LIBOPIE2DB libopie2/opiedbopiedb.pro
70 CONFIG_LIBOPIE2EXAMPLES libopie2/examplesexamples.pro 70 CONFIG_LIBOPIE2EXAMPLES libopie2/examplesexamples.pro
71 CONFIG_LIBOPIE2NET libopie2/opienetopienet.pro 71 CONFIG_LIBOPIE2NET libopie2/opienetopienet.pro
72 CONFIG_LIBOPIE2PIM libopie2/opiepimopiepim.pro 72 CONFIG_LIBOPIE2PIM libopie2/opiepimopiepim.pro
73 CONFIG_LIBOPIE2UI libopie2/opieuiopieui.pro 73 CONFIG_LIBOPIE2UI libopie2/opieuiopieui.pro
74 CONFIG_LIBOPIE2MM libopie2/opiemmopiemm.pro 74 CONFIG_LIBOPIE2MM libopie2/opiemmopiemm.pro
75 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro 75 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro
76 CONFIG_LIBOPIE_PIM libopie/pimpim.pro 76 CONFIG_LIBOPIE_PIM libopie/pimpim.pro
77 CONFIG_LIBQPE librarylibrary.pro 77 CONFIG_LIBQPE librarylibrary.pro
78 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro 78 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro
79 CONFIG_LIBSQL libsqllibsql.pro 79 CONFIG_LIBSQL libsqllibsql.pro
80CONFIG_LIBTREMOR core/multimedia/opieplayer/vorbis/tremor tremor.pro 80CONFIG_LIBTREMOR core/multimedia/opieplayer/vorbis/tremor tremor.pro
81CONFIG_LIBTREMORPLUGIN core/multimedia/opieplayer/vorbis libtremor.pro 81CONFIG_LIBTREMORPLUGIN core/multimedia/opieplayer/vorbis libtremor.pro
82 CONFIG_LIGHT-AND-POWER core/settings/light-and-powerlight-and-power.pro 82 CONFIG_LIGHT-AND-POWER core/settings/light-and-powerlight-and-power.pro
83 CONFIG_LIQUID noncore/styles/liquidliquid.pro 83 CONFIG_LIQUID noncore/styles/liquidliquid.pro
84 CONFIG_LOGOUTAPPLET core/applets/logoutappletlogoutapplet.pro 84 CONFIG_LOGOUTAPPLET core/applets/logoutappletlogoutapplet.pro
85 CONFIG_MAILIT noncore/net/mailit mailit.pro 85 CONFIG_MAILIT noncore/net/mailit mailit.pro
86 CONFIG_MEDIUMMOUNT noncore/settings/mediummountmediummount.pro 86 CONFIG_MEDIUMMOUNT noncore/settings/mediummountmediummount.pro
87 CONFIG_MEMORYAPPLET noncore/applets/memoryappletmemoryapplet.pro 87 CONFIG_MEMORYAPPLET noncore/applets/memoryappletmemoryapplet.pro
88 CONFIG_METAL noncore/styles/metalmetal.pro 88 CONFIG_METAL noncore/styles/metalmetal.pro
89 CONFIG_MINDBREAKER noncore/games/mindbreakermindbreaker.pro 89 CONFIG_MINDBREAKER noncore/games/mindbreakermindbreaker.pro
90 CONFIG_MINESWEEP noncore/games/minesweepminesweep.pro 90 CONFIG_MINESWEEP noncore/games/minesweepminesweep.pro
91 CONFIG_MOBILEMSG noncore/comm/mobilemsgmobilemsg.pro 91 CONFIG_MOBILEMSG noncore/comm/mobilemsgmobilemsg.pro
92 CONFIG_MODPLUG core/multimedia/opieplayer/modplugmodplug.pro 92 CONFIG_MODPLUG core/multimedia/opieplayer/modplugmodplug.pro
93 CONFIG_MULTIKEY inputmethods/multikeymultikey.pro 93 CONFIG_MULTIKEY inputmethods/multikeymultikey.pro
94 CONFIG_NETSYSTEMTIME noncore/settings/netsystemtimenetsystemtime.pro 94 CONFIG_NETSYSTEMTIME noncore/settings/netsystemtimenetsystemtime.pro
95 CONFIG_NETWORKAPPLET noncore/applets/networkappletnetworkapplet.pro 95 CONFIG_NETWORKAPPLET noncore/applets/networkappletnetworkapplet.pro
96 CONFIG_NETWORKSETUP noncore/settings/networksettingsnetworksettings.pro 96 CONFIG_NETWORKSETUP noncore/settings/networksettingsnetworksettings.pro
97 CONFIG_NOTESAPPLET noncore/applets/notesappletnotesapplet.pro 97 CONFIG_NOTESAPPLET noncore/applets/notesappletnotesapplet.pro
98 CONFIG_OAPP core/apps/oappoapp.pro 98 CONFIG_OAPP core/apps/oappoapp.pro
99 CONFIG_OBEX core/applets/obex2obex.pro 99 CONFIG_OBEX core/applets/obex2obex.pro
100 CONFIG_ODICT noncore/apps/odictodict.pro 100 CONFIG_ODICT noncore/apps/odictodict.pro
101 CONFIG_OIPKG core/apps/oipkgoipkg.pro 101 CONFIG_OIPKG core/apps/oipkgoipkg.pro
102 CONFIG_OPIE-CONSOLE noncore/apps/opie-consoleopie-console.pro 102 CONFIG_OPIE-CONSOLE noncore/apps/opie-consoleopie-console.pro
103 CONFIG_OPIE-LOGIN core/opie-loginopie-login.pro 103 CONFIG_OPIE-LOGIN core/opie-loginopie-login.pro
104 CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro 104 CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro
105 CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro 105 CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro
106 CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro 106 CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro
107 CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro 107 CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro
108 CONFIG_OPIEALARMcore/opiealarm 108 CONFIG_OPIEALARMcore/opiealarm
109 CONFIG_OPIEFTP noncore/net/opieftpopieftp.pro 109 CONFIG_OPIEFTP noncore/net/opieftpopieftp.pro
110 CONFIG_OPIEIRC noncore/net/opieircopieirc.pro 110 CONFIG_OPIEIRC noncore/net/opieircopieirc.pro
111 CONFIG_OPIEMAIL2noncore/mail mail.pro 111 CONFIG_OPIEMAIL2noncore/mail mail.pro
112 CONFIG_OPIEPLAYER core/multimedia/opieplayeropieplayer.pro 112 CONFIG_OPIEPLAYER core/multimedia/opieplayeropieplayer.pro
113 CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2opieplayer2.pro 113 CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2opieplayer2.pro
114 CONFIG_OPIE-RDESKTOP noncore/net/opierdesktopopierdesktop.pro 114 CONFIG_OPIE-RDESKTOP noncore/net/opierdesktopopierdesktop.pro
115 CONFIG_OPIEREC noncore/multimedia/opierecopierec.pro 115 CONFIG_OPIEREC noncore/multimedia/opierecopierec.pro
116 CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro 116 CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro
117 CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro 117 CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro
118 CONFIG_OSEARCH core/pim/osearchosearch.pro 118 CONFIG_OSEARCH core/pim/osearchosearch.pro
119 CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro 119 CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro
120 CONFIG_PARASHOOT noncore/games/parashootparashoot.pro 120 CONFIG_PARASHOOT noncore/games/parashootparashoot.pro
121 CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro 121 CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro
122 CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro 122 CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro
123 CONFIG_QASHMONEY noncore/apps/qashmoneyqashmoney.pro
123 CONFIG_QCOP core/apps/qcopqcop.pro 124 CONFIG_QCOP core/apps/qcopqcop.pro
124 CONFIG_QPDF noncore/graphics/qpdfqpdf.pro 125 CONFIG_QPDF noncore/graphics/qpdfqpdf.pro
125 CONFIG_QPDF2 noncore/graphics/qpdf2qpdf2.pro 126 CONFIG_QPDF2 noncore/graphics/qpdf2qpdf2.pro
126CONFIG_QUICKLAUNCHER core/tools/quicklauncher quicklauncher.pro 127CONFIG_QUICKLAUNCHER core/tools/quicklauncher quicklauncher.pro
127 CONFIG_QWS core/qwsqws.pro 128 CONFIG_QWS core/qwsqws.pro
128 CONFIG_REMOTE noncore/tools/remoteremote.pro 129 CONFIG_REMOTE noncore/tools/remoteremote.pro
129 CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro 130 CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro
130 CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro 131 CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro
131 CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro 132 CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro
132 CONFIG_ROTATION noncore/settings/rotationrotation.pro 133 CONFIG_ROTATION noncore/settings/rotationrotation.pro
133 CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro 134 CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro
134 CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro 135 CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro
135 CONFIG_SECURITY core/settings/securitysecurity.pro 136 CONFIG_SECURITY core/settings/securitysecurity.pro
136 CONFIG_SFCAVE noncore/games/sfcavesfcave.pro 137 CONFIG_SFCAVE noncore/games/sfcavesfcave.pro
137 CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro 138 CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro
138 CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro 139 CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro
139 CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro 140 CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro
140 CONFIG_SINGLE singlesingle.pro 141 CONFIG_SINGLE singlesingle.pro
141 CONFIG_SNAKE noncore/games/snakesnake.pro 142 CONFIG_SNAKE noncore/games/snakesnake.pro
142 CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro 143 CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro
143 CONFIG_SOUND noncore/settings/soundsound.pro 144 CONFIG_SOUND noncore/settings/soundsound.pro
144 CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro 145 CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro
145 CONFIG_SUSPENDAPPLET core/applets/suspendappletsuspendapplet.pro 146 CONFIG_SUSPENDAPPLET core/applets/suspendappletsuspendapplet.pro
146 CONFIG_SYSINFO noncore/apps/sysinfosysinfo.pro 147 CONFIG_SYSINFO noncore/apps/sysinfosysinfo.pro
147 CONFIG_TABLEVIEWER noncore/apps/tableviewertableviewer.pro 148 CONFIG_TABLEVIEWER noncore/apps/tableviewertableviewer.pro
148 CONFIG_TABMANAGER noncore/settings/tabmanagertabmanager.pro 149 CONFIG_TABMANAGER noncore/settings/tabmanagertabmanager.pro
149 CONFIG_TABOAPP core/apps/taboapptaboapp.pro 150 CONFIG_TABOAPP core/apps/taboapptaboapp.pro
150 CONFIG_TEST libsql/testtest.pro 151 CONFIG_TEST libsql/testtest.pro
151 CONFIG_TEST noncore/apps/opie-console/testtest.pro 152 CONFIG_TEST noncore/apps/opie-console/testtest.pro
152 CONFIG_TETRIX noncore/games/tetrixtetrix.pro 153 CONFIG_TETRIX noncore/games/tetrixtetrix.pro
153 CONFIG_TEXTEDIT core/apps/textedittextedit.pro 154 CONFIG_TEXTEDIT core/apps/textedittextedit.pro
154 CONFIG_THEME noncore/styles/themetheme.pro 155 CONFIG_THEME noncore/styles/themetheme.pro
155 CONFIG_TICTAC noncore/games/tictactictac.pro 156 CONFIG_TICTAC noncore/games/tictactictac.pro
156 CONFIG_TINYKATE noncore/apps/tinykatetinykate.pro 157 CONFIG_TINYKATE noncore/apps/tinykatetinykate.pro
157 CONFIG_TODAY core/pim/todaytoday.pro 158 CONFIG_TODAY core/pim/todaytoday.pro
158CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro 159CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro
159 CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebookdatebook.pro 160 CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebookdatebook.pro
160 CONFIG_TODAY_FORTUNE noncore/todayplugins/fortunefortune.pro 161 CONFIG_TODAY_FORTUNE noncore/todayplugins/fortunefortune.pro
161 CONFIG_TODAY_MAIL core/pim/today/plugins/mailmail.pro 162 CONFIG_TODAY_MAIL core/pim/today/plugins/mailmail.pro
162 CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stocktickerstockticker.pro 163 CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stocktickerstockticker.pro
163 CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlibstocktickerlib.pro 164 CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlibstocktickerlib.pro
164 CONFIG_TODAY_TODOLIST core/pim/today/plugins/todolisttodolist.pro 165 CONFIG_TODAY_TODOLIST core/pim/today/plugins/todolisttodolist.pro
165 CONFIG_TODAY_WEATHERnoncore/todayplugins/weather weather.pro 166 CONFIG_TODAY_WEATHERnoncore/todayplugins/weather weather.pro
166 CONFIG_TODO core/pim/todotodo.pro 167 CONFIG_TODO core/pim/todotodo.pro
167 CONFIG_UBROWSER noncore/net/ubrowserubrowser.pro 168 CONFIG_UBROWSER noncore/net/ubrowserubrowser.pro
168 CONFIG_UNIKEYBOARD inputmethods/unikeyboardunikeyboard.pro 169 CONFIG_UNIKEYBOARD inputmethods/unikeyboardunikeyboard.pro
169 CONFIG_USERMANAGER noncore/settings/usermanagerusermanager.pro 170 CONFIG_USERMANAGER noncore/settings/usermanagerusermanager.pro
170 CONFIG_VMEMO core/applets/vmemovmemo.pro 171 CONFIG_VMEMO core/applets/vmemovmemo.pro
171 CONFIG_VOLUMEAPPLET core/applets/volumeappletvolumeapplet.pro 172 CONFIG_VOLUMEAPPLET core/applets/volumeappletvolumeapplet.pro
172 CONFIG_VTAPPLET core/applets/vtappletvtapplet.pro 173 CONFIG_VTAPPLET core/applets/vtappletvtapplet.pro
173 CONFIG_WAVPLUGIN core/multimedia/opieplayer/wavpluginwavplugin.pro 174 CONFIG_WAVPLUGIN core/multimedia/opieplayer/wavpluginwavplugin.pro
174 CONFIG_WELLENREITER noncore/net/wellenreiterwellenreiter.pro 175 CONFIG_WELLENREITER noncore/net/wellenreiterwellenreiter.pro
175 CONFIG_WIRELESSAPPLET noncore/applets/wirelessappletwirelessapplet.pro 176 CONFIG_WIRELESSAPPLET noncore/applets/wirelessappletwirelessapplet.pro
176 CONFIG_WLAN noncore/settings/networksettings/wlanwlan.pro 177 CONFIG_WLAN noncore/settings/networksettings/wlanwlan.pro
177 CONFIG_PPP noncore/settings/networksettings/pppppp.pro 178 CONFIG_PPP noncore/settings/networksettings/pppppp.pro
178 CONFIG_WORDGAME noncore/games/wordgamewordgame.pro 179 CONFIG_WORDGAME noncore/games/wordgamewordgame.pro
179 CONFIG_ZSAFEnoncore/apps/zsafe zsafe.pro 180 CONFIG_ZSAFEnoncore/apps/zsafe zsafe.pro
180 CONFIG_MAIN_TAB_EXAMPLE examples/main-tabexample.pro 181 CONFIG_MAIN_TAB_EXAMPLE examples/main-tabexample.pro
181 CONFIG_SIMPLE_EXAMPLE examples/simpleexample.pro 182 CONFIG_SIMPLE_EXAMPLE examples/simpleexample.pro
182 CONFIG_SIMPLE_ICON examples/simple-iconexample.pro 183 CONFIG_SIMPLE_ICON examples/simple-iconexample.pro
183 CONFIG_SIMPLE_MAIN examples/simple-mainexample.pro 184 CONFIG_SIMPLE_MAIN examples/simple-mainexample.pro
184<<<<<<< packages 185<<<<<<< packages
185 CONFIG_SIMPLE_PIM examples/simple-pimexample.pro 186 CONFIG_SIMPLE_PIM examples/simple-pimexample.pro
186CONFIG_BIGSCREEN_EXAMPLE libopie/big-screen/example osplitter_mail.pro 187CONFIG_BIGSCREEN_EXAMPLE libopie/big-screen/example osplitter_mail.pro
187 188
188======= 189=======
189 CONFIG_SIMPLE_PIM examples/simple-pimexample.pro 190 CONFIG_SIMPLE_PIM examples/simple-pimexample.pro
190 CONFIG_APPLET_EXAMPLE examples/appletexample.pro 191 CONFIG_APPLET_EXAMPLE examples/appletexample.pro
191>>>>>>> 1.56 192>>>>>>> 1.56