summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2004-01-05 00:23:51 (UTC)
committer mickeyl <mickeyl>2004-01-05 00:23:51 (UTC)
commit667cdc3c4c05f465244de26580be8808a0eb2b0e (patch) (unidiff)
tree8de51859120e9278cb20166c69d358f019f05f34
parent8b0be84aaf5da9b43ab6935c1939bf77caf0aa02 (diff)
downloadopie-667cdc3c4c05f465244de26580be8808a0eb2b0e.zip
opie-667cdc3c4c05f465244de26580be8808a0eb2b0e.tar.gz
opie-667cdc3c4c05f465244de26580be8808a0eb2b0e.tar.bz2
use smallIconSize, not hardcoded 14
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/otabwidget.cpp8
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 @@
26 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
29 29
30*/ 30*/
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>
37 38
38#include <qcombobox.h> 39#include <qcombobox.h>
39#include <qwidgetstack.h> 40#include <qwidgetstack.h>
40 41
41OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p ) 42OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p )
@@ -321,20 +322,19 @@ void OTabWidget::slotTabListSelected( int index )
321 if ( newtab ) 322 if ( newtab )
322 { 323 {
323 selectTab( newtab ); 324 selectTab( newtab );
324 } 325 }
325} 326}
326 327
327QPixmap OTabWidget::loadSmooth( const QString &name ) 328QPixmap 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
335void OTabWidget::selectTab( OTabInfo *tab ) 335void OTabWidget::selectTab( OTabInfo *tab )
336{ 336{
337 if ( tabBarStyle == IconTab ) 337 if ( tabBarStyle == IconTab )
338 { 338 {
339 if ( currTab ) 339 if ( currTab )
340 { 340 {