diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:52:49 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-02 15:52:49 +0900 |
commit | a8f627e6d45af521718176586daf0253b4daa597 (patch) | |
tree | cb97fd20da95f86ceac149162040a2907cd0acad /klipper/popupproxy.cpp | |
parent | 547c7d72cf8f8eccd79e6114d3252ae01f1accde (diff) | |
download | tdebase-a8f627e6d45af521718176586daf0253b4daa597.tar.gz tdebase-a8f627e6d45af521718176586daf0253b4daa597.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
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 ); } |