summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2004-01-05 00:23:51 (UTC)
committer mickeyl <mickeyl>2004-01-05 00:23:51 (UTC)
commit667cdc3c4c05f465244de26580be8808a0eb2b0e (patch) (side-by-side diff)
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
@@ -22,24 +22,25 @@
 :     =  ...= . :.=-
 -.   .:....=;==+<; You should have received a copy of the GNU
  -_. . .   )=.  = Library General Public License along with
    --        :-=` this library; see the file COPYING.LIB.
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 )
: QWidget( parent, name )
{
if ( s == Global )
{
@@ -317,28 +318,27 @@ void OTabWidget::slotTabBarSelected( int id )
void OTabWidget::slotTabListSelected( int index )
{
OTabInfo *newtab = tabs.at( 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 )
{
tabBar->tab( currTab->id() )->setText( QString::null );
setUpLayout();
}
tabBar->tab( tab->id() )->setText( tab->label() );