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) (side-by-side diff)
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,
QActionGroup *items = new QActionGroup( this, QString::null, false );
m_actionMail = new QAction( tr( "Write Mail To" ),
- Opie::Core::OResource::loadPixmap( "addressbook/sendmail" ),
+ Opie::Core::OResource::loadPixmap( "addressbook/sendmail", Opie::Core::OResource::SmallIcon ),
QString::null, 0, items, 0 );
connect( m_actionMail, SIGNAL(activated()), this, SLOT(writeMail()) );
a = new QAction( tr("Import vCard"),
- Opie::Core::OResource::loadPixmap( "addressbook/fileimport" ),
+ Opie::Core::OResource::loadPixmap( "addressbook/fileimport", Opie::Core::OResource::SmallIcon ),
QString::null, 0, items, 0 );
connect( a, SIGNAL(activated()), this, SLOT(importvCard()) );
a = new QAction( tr("Export vCard"),
- Opie::Core::OResource::loadPixmap( "addressbook/fileexport" ),
+ Opie::Core::OResource::loadPixmap( "addressbook/fileexport", Opie::Core::OResource::SmallIcon ),
QString::null, 0, items, 0 );
connect( a, SIGNAL(activated()), this, SLOT(exportvCard()) );
m_actionPersonal = new QAction( tr("My Personal Details"),
- Opie::Core::OResource::loadPixmap( "addressbook/identity" ),
+ Opie::Core::OResource::loadPixmap( "addressbook/identity", Opie::Core::OResource::SmallIcon ),
QString::null, 0, items, 0 , true );
connect( m_actionPersonal, SIGNAL(activated()), this, SLOT(slotPersonalView()) );