author | zecke <zecke> | 2002-09-25 16:10:02 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-09-25 16:10:02 (UTC) |
commit | a546a6ea143da9244a06f1e40829254e8bf4dc8f (patch) (side-by-side diff) | |
tree | 6e9e2a5606e9eec5f6ac751dd99ddedf1e42fb29 /library | |
parent | 5b7e930de7cc42f14b078072b8d23b977001e7b6 (diff) | |
download | opie-a546a6ea143da9244a06f1e40829254e8bf4dc8f.zip opie-a546a6ea143da9244a06f1e40829254e8bf4dc8f.tar.gz opie-a546a6ea143da9244a06f1e40829254e8bf4dc8f.tar.bz2 |
Fix bigPixmaps BUG.
instead of returning the bigPixmap from the d->mPixmaps[1] I returned
the deprecated variable which was null
-rw-r--r-- | library/applnk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/applnk.cpp b/library/applnk.cpp index 1f053f3..44f3f58 100644 --- a/library/applnk.cpp +++ b/library/applnk.cpp @@ -488,13 +488,13 @@ const QPixmap& AppLnk::pixmap() const */ const QPixmap& AppLnk::bigPixmap() const { if ( d->mPixmaps[1].isNull() ) { return pixmap( AppLnkPrivate::Big, bigSize ); } - return mBigPixmap; + return d->mPixmaps[1]; } /*! Returns the type of the AppLnk. For applications, games and settings the type is \c Application; for documents the type is the document's MIME type. |