summaryrefslogtreecommitdiff
path: root/core/pim
authordrw <drw>2005-04-28 23:59:32 (UTC)
committer drw <drw>2005-04-28 23:59:32 (UTC)
commitc1cab57555a395c9da678b92f492779506421386 (patch) (unidiff)
tree5f0ae50c0753cbf2593d5ab70d979dcf8d00062e /core/pim
parentd80fe3c758c34c03b8d99e7a51101933f178d7e6 (diff)
downloadopie-c1cab57555a395c9da678b92f492779506421386.zip
opie-c1cab57555a395c9da678b92f492779506421386.tar.gz
opie-c1cab57555a395c9da678b92f492779506421386.tar.bz2
Should have make these icons SmallIcon sized in the 1st place
Diffstat (limited to 'core/pim') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/addressbook.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp
index 4fa9253..b4734a4 100644
--- a/core/pim/addressbook/addressbook.cpp
+++ b/core/pim/addressbook/addressbook.cpp
@@ -101,22 +101,22 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name,
101 QActionGroup *items = new QActionGroup( this, QString::null, false ); 101 QActionGroup *items = new QActionGroup( this, QString::null, false );
102 102
103 m_actionMail = new QAction( tr( "Write Mail To" ), 103 m_actionMail = new QAction( tr( "Write Mail To" ),
104 Opie::Core::OResource::loadPixmap( "addressbook/sendmail" ), 104 Opie::Core::OResource::loadPixmap( "addressbook/sendmail", Opie::Core::OResource::SmallIcon ),
105 QString::null, 0, items, 0 ); 105 QString::null, 0, items, 0 );
106 connect( m_actionMail, SIGNAL(activated()), this, SLOT(writeMail()) ); 106 connect( m_actionMail, SIGNAL(activated()), this, SLOT(writeMail()) );
107 107
108 a = new QAction( tr("Import vCard"), 108 a = new QAction( tr("Import vCard"),
109 Opie::Core::OResource::loadPixmap( "addressbook/fileimport" ), 109 Opie::Core::OResource::loadPixmap( "addressbook/fileimport", Opie::Core::OResource::SmallIcon ),
110 QString::null, 0, items, 0 ); 110 QString::null, 0, items, 0 );
111 connect( a, SIGNAL(activated()), this, SLOT(importvCard()) ); 111 connect( a, SIGNAL(activated()), this, SLOT(importvCard()) );
112 112
113 a = new QAction( tr("Export vCard"), 113 a = new QAction( tr("Export vCard"),
114 Opie::Core::OResource::loadPixmap( "addressbook/fileexport" ), 114 Opie::Core::OResource::loadPixmap( "addressbook/fileexport", Opie::Core::OResource::SmallIcon ),
115 QString::null, 0, items, 0 ); 115 QString::null, 0, items, 0 );
116 connect( a, SIGNAL(activated()), this, SLOT(exportvCard()) ); 116 connect( a, SIGNAL(activated()), this, SLOT(exportvCard()) );
117 117
118 m_actionPersonal = new QAction( tr("My Personal Details"), 118 m_actionPersonal = new QAction( tr("My Personal Details"),
119 Opie::Core::OResource::loadPixmap( "addressbook/identity" ), 119 Opie::Core::OResource::loadPixmap( "addressbook/identity", Opie::Core::OResource::SmallIcon ),
120 QString::null, 0, items, 0 , true ); 120 QString::null, 0, items, 0 , true );
121 connect( m_actionPersonal, SIGNAL(activated()), this, SLOT(slotPersonalView()) ); 121 connect( m_actionPersonal, SIGNAL(activated()), this, SLOT(slotPersonalView()) );
122 122