author | eilers <eilers> | 2003-02-24 14:59:30 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-02-24 14:59:30 (UTC) |
commit | 25725a7cd45731656e3ee3476614512b027dacf8 (patch) (side-by-side diff) | |
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 @@ -189,33 +189,33 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, actionBeam = a; connect( a, SIGNAL( activated() ), this, SLOT( slotBeam() ) ); a->addTo( edit ); a->addTo( listTools ); } edit->insertSeparator(); a = new QAction( tr("Import vCard"), QString::null, 0, 0); actionPersonal = a; connect( a, SIGNAL( activated() ), this, SLOT( importvCard() ) ); a->addTo( edit ); edit->insertSeparator(); a = new QAction( tr("My Personal Details"), Resource::loadPixmap( "addressbook/identity" ), - QString::null, 0, this, 0 ); + QString::null, 0, this, 0 , TRUE ); actionPersonal = a; connect( a, SIGNAL( activated() ), this, SLOT( slotPersonalView() ) ); a->addTo( edit ); #ifdef __DEBUG_RELEASE // Remove this function for public Release ! This is only // for debug purposes .. a = new QAction( tr( "Save all Data"), QString::null, 0, 0 ); connect( a, SIGNAL( activated() ), this , SLOT( slotSave() ) ); a->addTo( edit ); #endif a = new QAction( tr( "Config" ), Resource::loadPixmap( "addressbook/configure" ), QString::null, 0, this, 0 ); connect( a, SIGNAL( activated() ), this, SLOT( slotConfig() ) ); a->addTo( edit ); |