author | eilers <eilers> | 2003-02-24 14:59:30 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-02-24 14:59:30 (UTC) |
commit | 25725a7cd45731656e3ee3476614512b027dacf8 (patch) (unidiff) | |
tree | 14fd643984abfd9d6b748ec6e0e3872a6cf08135 | |
parent | fe2828984e093d026dfacdeadc541feebaa98d5e (diff) | |
download | opie-25725a7cd45731656e3ee3476614512b027dacf8.zip opie-25725a7cd45731656e3ee3476614512b027dacf8.tar.gz opie-25725a7cd45731656e3ee3476614512b027dacf8.tar.bz2 |
Oops: Personal details menu disabled.. Fixed!
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 881b839..d4b9f43 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -193,25 +193,25 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, | |||
193 | } | 193 | } |
194 | 194 | ||
195 | edit->insertSeparator(); | 195 | edit->insertSeparator(); |
196 | 196 | ||
197 | a = new QAction( tr("Import vCard"), QString::null, 0, 0); | 197 | a = new QAction( tr("Import vCard"), QString::null, 0, 0); |
198 | actionPersonal = a; | 198 | actionPersonal = a; |
199 | connect( a, SIGNAL( activated() ), this, SLOT( importvCard() ) ); | 199 | connect( a, SIGNAL( activated() ), this, SLOT( importvCard() ) ); |
200 | a->addTo( edit ); | 200 | a->addTo( edit ); |
201 | 201 | ||
202 | edit->insertSeparator(); | 202 | edit->insertSeparator(); |
203 | 203 | ||
204 | a = new QAction( tr("My Personal Details"), Resource::loadPixmap( "addressbook/identity" ), | 204 | a = new QAction( tr("My Personal Details"), Resource::loadPixmap( "addressbook/identity" ), |
205 | QString::null, 0, this, 0 ); | 205 | QString::null, 0, this, 0 , TRUE ); |
206 | actionPersonal = a; | 206 | actionPersonal = a; |
207 | connect( a, SIGNAL( activated() ), this, SLOT( slotPersonalView() ) ); | 207 | connect( a, SIGNAL( activated() ), this, SLOT( slotPersonalView() ) ); |
208 | a->addTo( edit ); | 208 | a->addTo( edit ); |
209 | 209 | ||
210 | 210 | ||
211 | #ifdef __DEBUG_RELEASE | 211 | #ifdef __DEBUG_RELEASE |
212 | // Remove this function for public Release ! This is only | 212 | // Remove this function for public Release ! This is only |
213 | // for debug purposes .. | 213 | // for debug purposes .. |
214 | a = new QAction( tr( "Save all Data"), QString::null, 0, 0 ); | 214 | a = new QAction( tr( "Save all Data"), QString::null, 0, 0 ); |
215 | connect( a, SIGNAL( activated() ), this , SLOT( slotSave() ) ); | 215 | connect( a, SIGNAL( activated() ), this , SLOT( slotSave() ) ); |
216 | a->addTo( edit ); | 216 | a->addTo( edit ); |
217 | #endif | 217 | #endif |