-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 93581e8..82a1b57 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -63,16 +63,20 @@ | |||
63 | #include <sys/types.h> | 63 | #include <sys/types.h> |
64 | #include <fcntl.h> | 64 | #include <fcntl.h> |
65 | #include <unistd.h> | 65 | #include <unistd.h> |
66 | 66 | ||
67 | #include <qdatetime.h> | 67 | #include <qdatetime.h> |
68 | 68 | ||
69 | #include "picker.h" | 69 | #include "picker.h" |
70 | 70 | ||
71 | // Remove this for OPIE releae 1.0 ! | ||
72 | #define __DEBUG_RELEASE | ||
73 | |||
74 | |||
71 | static QString addressbookPersonalVCardName() | 75 | static QString addressbookPersonalVCardName() |
72 | { | 76 | { |
73 | QString filename = Global::applicationFileName("addressbook", | 77 | QString filename = Global::applicationFileName("addressbook", |
74 | "businesscard.vcf"); | 78 | "businesscard.vcf"); |
75 | return filename; | 79 | return filename; |
76 | } | 80 | } |
77 | 81 | ||
78 | 82 | ||
@@ -179,20 +183,29 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, | |||
179 | 183 | ||
180 | edit->insertSeparator(); | 184 | edit->insertSeparator(); |
181 | 185 | ||
182 | a = new QAction( tr("My Personal Details"), QString::null, 0, 0, 0, TRUE ); | 186 | a = new QAction( tr("My Personal Details"), QString::null, 0, 0, 0, TRUE ); |
183 | actionPersonal = a; | 187 | actionPersonal = a; |
184 | connect( a, SIGNAL( activated() ), this, SLOT( slotPersonalView() ) ); | 188 | connect( a, SIGNAL( activated() ), this, SLOT( slotPersonalView() ) ); |
185 | a->addTo( edit ); | 189 | a->addTo( edit ); |
186 | 190 | ||
187 | 191 | // Do we need this function ? (se) | |
188 | a = new QAction( tr( "Arrange Edit Fields"), QString::null, 0, 0 ); | 192 | // a = new QAction( tr( "Arrange Edit Fields"), QString::null, 0, 0 ); |
189 | connect( a, SIGNAL( activated() ), this, SLOT( slotSettings() ) ); | 193 | // connect( a, SIGNAL( activated() ), this, SLOT( slotSettings() ) ); |
194 | // a->addTo( edit ); | ||
195 | |||
196 | |||
197 | #ifdef __DEBUG_RELEASE | ||
198 | // Remove this function for public Release ! This is only | ||
199 | // for debug purposes .. | ||
200 | a = new QAction( tr( "Save all Data"), QString::null, 0, 0 ); | ||
201 | connect( a, SIGNAL( activated() ), this, SLOT( save() ) ); | ||
190 | a->addTo( edit ); | 202 | a->addTo( edit ); |
203 | #endif | ||
191 | 204 | ||
192 | // Create Views | 205 | // Create Views |
193 | listContainer = new QWidget( this ); | 206 | listContainer = new QWidget( this ); |
194 | 207 | ||
195 | QVBoxLayout *vb = new QVBoxLayout( listContainer ); | 208 | QVBoxLayout *vb = new QVBoxLayout( listContainer ); |
196 | 209 | ||
197 | abList = new AbTable( &orderedFields, listContainer, "table" ); | 210 | abList = new AbTable( &orderedFields, listContainer, "table" ); |
198 | vb->addWidget(abList); | 211 | vb->addWidget(abList); |