diff options
Diffstat (limited to 'src/entryiconfactory.cpp')
-rw-r--r-- | src/entryiconfactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entryiconfactory.cpp b/src/entryiconfactory.cpp index a01d982..d852d09 100644 --- a/src/entryiconfactory.cpp +++ b/src/entryiconfactory.cpp @@ -30,7 +30,7 @@ TQPixmap* EntryIconFactory::createPixmap(const TQIconSet&, TQIconSet::Size, TQIc // if we're 22x22 or smaller, just use entry icon if(m_size < 23) { TQImage entryImg = entryPix.convertToImage(); - entryPix.convertFromImage(entryImg.smoothScale(m_size, m_size, TQ_ScaleMin), 0); + entryPix.convertFromImage(entryImg.smoothScale(m_size, m_size, TQImage::ScaleMin), 0); return new TQPixmap(entryPix); } |