diff options
Diffstat (limited to 'src/itemlibrary.cpp')
-rw-r--r-- | src/itemlibrary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/itemlibrary.cpp b/src/itemlibrary.cpp index bbf144e..6b215cf 100644 --- a/src/itemlibrary.cpp +++ b/src/itemlibrary.cpp @@ -456,7 +456,7 @@ TQImage ItemLibrary::itemImage( Item *item, const uint maxSize ) // Now, rotate the image so that it's the right way up, and scale it to size TQImage im = pm.convertToImage(); im = im.xForm(transMatrix); - im = im.smoothScale( 50, 50, TQ_ScaleMin ); + im = im.smoothScale( 50, 50, TQImage::ScaleMin ); if (cache) m_imageMap[item->type()] = im; |