-rw-r--r-- | libopie/otabwidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libopie/otabwidget.cpp b/libopie/otabwidget.cpp index 1b8c085..3a9a5ec 100644 --- a/libopie/otabwidget.cpp +++ b/libopie/otabwidget.cpp | |||
@@ -31,6 +31,7 @@ | |||
31 | 31 | ||
32 | #include "otabwidget.h" | 32 | #include "otabwidget.h" |
33 | 33 | ||
34 | #include <qpe/applnk.h> | ||
34 | #include <qpe/config.h> | 35 | #include <qpe/config.h> |
35 | #include <qpe/resource.h> | 36 | #include <qpe/resource.h> |
36 | #include <opie/otabbar.h> | 37 | #include <opie/otabbar.h> |
@@ -326,10 +327,9 @@ void OTabWidget::slotTabListSelected( int index ) | |||
326 | 327 | ||
327 | QPixmap OTabWidget::loadSmooth( const QString &name ) | 328 | QPixmap OTabWidget::loadSmooth( const QString &name ) |
328 | { | 329 | { |
329 | QImage image = Resource::loadImage( name ); | 330 | QPixmap p; |
330 | QPixmap pixmap; | 331 | p.convertFromImage( Resource::loadImage( name ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); |
331 | pixmap.convertFromImage( image.smoothScale( 14, 14 ) ); | 332 | return p; |
332 | return pixmap; | ||
333 | } | 333 | } |
334 | 334 | ||
335 | void OTabWidget::selectTab( OTabInfo *tab ) | 335 | void OTabWidget::selectTab( OTabInfo *tab ) |