-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 @@ -26,16 +26,17 @@ If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "otabwidget.h" +#include <qpe/applnk.h> #include <qpe/config.h> #include <qpe/resource.h> #include <opie/otabbar.h> #include <qcombobox.h> #include <qwidgetstack.h> OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p ) @@ -321,20 +322,19 @@ void OTabWidget::slotTabListSelected( int index ) if ( newtab ) { selectTab( newtab ); } } QPixmap OTabWidget::loadSmooth( const QString &name ) { - QImage image = Resource::loadImage( name ); - QPixmap pixmap; - pixmap.convertFromImage( image.smoothScale( 14, 14 ) ); - return pixmap; + QPixmap p; + p.convertFromImage( Resource::loadImage( name ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); + return p; } void OTabWidget::selectTab( OTabInfo *tab ) { if ( tabBarStyle == IconTab ) { if ( currTab ) { |