diff options
Diffstat (limited to 'klipper/popupproxy.cpp')
-rw-r--r-- | klipper/popupproxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klipper/popupproxy.cpp b/klipper/popupproxy.cpp index 71adba63d..f4264cf56 100644 --- a/klipper/popupproxy.cpp +++ b/klipper/popupproxy.cpp @@ -98,7 +98,7 @@ void PopupProxy::tryInsertItem( HistoryItem const * const item, } else { const TQSize max_size( m_menu_width,m_menu_height/4 ); if ( image.height() > max_size.height() || image.width() > max_size.width() ) { - image.convertFromImage( TQImage(image.convertToImage()).smoothScale( max_size, TQ_ScaleMin ) ); + image.convertFromImage( TQImage(image.convertToImage()).smoothScale( max_size, TQImage::ScaleMin ) ); } id = proxy_for_menu->insertItem( image, -1, index ); } |