diff options
Diffstat (limited to 'src/entryiconview.cpp')
-rw-r--r-- | src/entryiconview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entryiconview.cpp b/src/entryiconview.cpp index c932573..1364680 100644 --- a/src/entryiconview.cpp +++ b/src/entryiconview.cpp @@ -105,7 +105,7 @@ const TQPixmap& EntryIconView::defaultPixmap() { tmp = UserIcon(TQString::fromLatin1("tellico")); } if(TQMAX(tmp.width(), tmp.height()) > static_cast<int>(MIN_ENTRY_ICON_SIZE)) { - tmp.convertFromImage(tmp.convertToImage().smoothScale(m_maxIconWidth, m_maxIconHeight, TQ_ScaleMin)); + tmp.convertFromImage(tmp.convertToImage().smoothScale(m_maxIconWidth, m_maxIconHeight, TQImage::ScaleMin)); } pix = new TQPixmap(tmp); m_defaultPixmaps.insert(m_coll->type(), pix); |