diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:48:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-03 22:42:31 +0900 |
commit | c063a706bb5c136b364ff0b391d9e06746d102b9 (patch) | |
tree | afb85141498b0b77e4eaa6ea2b12e6844e6fe357 /libk3b/tools | |
parent | 04086637d9bcdd8b39d1ae2c4025a92d248e7755 (diff) | |
download | k3b-c063a706bb5c136b364ff0b391d9e06746d102b9.tar.gz k3b-c063a706bb5c136b364ff0b391d9e06746d102b9.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit ed876dc3743b8e65fa280010fb53abb079b982ef)
Diffstat (limited to 'libk3b/tools')
-rw-r--r-- | libk3b/tools/k3blistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libk3b/tools/k3blistview.cpp b/libk3b/tools/k3blistview.cpp index b6ab012..8d6b24c 100644 --- a/libk3b/tools/k3blistview.cpp +++ b/libk3b/tools/k3blistview.cpp @@ -1174,7 +1174,7 @@ void K3bListView::viewportResizeEvent( TQResizeEvent* e ) if( bgPix.width() < m_backgroundPixmap.width() || bgPix.height() < m_backgroundPixmap.height() ) { - TQPixmap newBgPix( m_backgroundPixmap.convertToImage().scale( bgPix.size(), TQ_ScaleMin ) ); + TQPixmap newBgPix( m_backgroundPixmap.convertToImage().scale( bgPix.size(), TQImage::ScaleMin ) ); if( m_backgroundPixmapPosition == TOP_LEFT ) bitBlt( &bgPix, 0, 0, &newBgPix, 0, 0, |