author | eilers <eilers> | 2003-02-27 11:50:41 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-02-27 11:50:41 (UTC) |
commit | df65b895df3728387df0c29fd251c0d68d2490e3 (patch) (side-by-side diff) | |
tree | da2996026e39ed6ed52efa40125c70d9b91493fb | |
parent | 1351ff0f38670a66ef5665f20883e04f0d9bf50f (diff) | |
download | opie-df65b895df3728387df0c29fd251c0d68d2490e3.zip opie-df65b895df3728387df0c29fd251c0d68d2490e3.tar.gz opie-df65b895df3728387df0c29fd251c0d68d2490e3.tar.bz2 |
Adding icon for import
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index d4b9f43..0276231 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp @@ -185,25 +185,26 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, if ( Ir::supported() ) { a = new QAction( tr ("Beam Entry" ), Resource::loadPixmap( "beam" ), QString::null, 0, this, 0 ); 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); + a = new QAction( tr("Import vCard"), Resource::loadPixmap( "addressbook/fileimport"), QString::null, + 0, this, 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 , TRUE ); actionPersonal = a; connect( a, SIGNAL( activated() ), this, SLOT( slotPersonalView() ) ); a->addTo( edit ); |