author | zecke <zecke> | 2002-09-10 22:35:13 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-09-10 22:35:13 (UTC) |
commit | f27a003efcc655edd7100a188e5fff17b4d4c012 (patch) (side-by-side diff) | |
tree | dfdf6f4ddfd0cf899756bc2ecb503ea52ecd9984 /library | |
parent | aa056d16a0bed859dbe23dc93a7220181b216634 (diff) | |
download | opie-f27a003efcc655edd7100a188e5fff17b4d4c012.zip opie-f27a003efcc655edd7100a188e5fff17b4d4c012.tar.gz opie-f27a003efcc655edd7100a188e5fff17b4d4c012.tar.bz2 |
Icon sizes
-rw-r--r-- | library/applnk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/applnk.cpp b/library/applnk.cpp index 41b3008..1f053f3 100644 --- a/library/applnk.cpp +++ b/library/applnk.cpp @@ -454,27 +454,27 @@ const QPixmap& AppLnk::pixmap( int pos, int size ) const { return that->d->mPixmaps[pos]; } QImage unscaledIcon = Resource::loadImage( that->mIconFile ); if ( unscaledIcon.isNull() ) { qDebug( "Cannot find icon: %s", that->mIconFile.latin1() ); that->d->mPixmaps[pos].convertFromImage( Resource::loadImage("UnknownDocument") .smoothScale( size, size ) ); } else { that->d->mPixmaps[0].convertFromImage( unscaledIcon.smoothScale( smallSize, smallSize ) ); that->d->mPixmaps[1].convertFromImage( unscaledIcon.smoothScale( bigSize, bigSize ) ); } - return that->d->mPixmaps[0]; + return that->d->mPixmaps[pos]; } - return mPixmap; + return d->mPixmaps[pos]; } /*! Returns a small pixmap associated with the application. \sa bigPixmap() setIcon() */ const QPixmap& AppLnk::pixmap() const { if ( d->mPixmaps[0].isNull() ) { return pixmap(AppLnkPrivate::Normal, smallSize ); } |