author | drw <drw> | 2005-03-04 20:06:47 (UTC) |
---|---|---|
committer | drw <drw> | 2005-03-04 20:06:47 (UTC) |
commit | 4cd082939b03ec1891911c76cbd5aa12f84eb1f1 (patch) (side-by-side diff) | |
tree | 3e9cca0534499acae17ebe14b254d6b9955fc1f6 | |
parent | 9d5079d82dc2821e719e70c0111e5f2ddc30eb37 (diff) | |
download | opie-4cd082939b03ec1891911c76cbd5aa12f84eb1f1.zip opie-4cd082939b03ec1891911c76cbd5aa12f84eb1f1.tar.gz opie-4cd082939b03ec1891911c76cbd5aa12f84eb1f1.tar.bz2 |
Scale icons appropriately
-rw-r--r-- | core/pim/today/todaybase.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp index cb809d3..a89f454 100644 --- a/core/pim/today/todaybase.cpp +++ b/core/pim/today/todaybase.cpp @@ -15,8 +15,9 @@ ***************************************************************************/ #include "todaybase.h" +#include <qpe/applnk.h> #include <qpe/resource.h> #include <qvbox.h> #include <qwhatsthis.h> @@ -29,9 +30,10 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags ) QImage opiezillaimage = QImage( Resource::loadImage("logo/opielogo" ) ); opiezillaimage = opiezillaimage.smoothScale( 45, 45 ); QPixmap opiezilla; //the opiezilla opiezilla.convertFromImage( opiezillaimage ); - QPixmap config = Resource::loadPixmap( "SettingsIcon" ); // config icon + QPixmap config; + config.convertFromImage( Resource::loadImage( "SettingsIcon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); layout = 0L; QPalette pal = this->palette(); |