diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:50:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-03 22:55:20 +0900 |
commit | 4b657979ec0fccf8904edfef636f23347caa3962 (patch) | |
tree | 6e56f2ff567a5df1e23653c27dc39f2e7994c432 /src/newstuff/dialog.cpp | |
parent | 31fba8412589656cf1c330ad617732a346309344 (diff) | |
download | tellico-4b657979ec0fccf8904edfef636f23347caa3962.tar.gz tellico-4b657979ec0fccf8904edfef636f23347caa3962.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit d82c9bd8b659143ef1c13dfff0f0a1a6da99e11f)
Diffstat (limited to 'src/newstuff/dialog.cpp')
-rw-r--r-- | src/newstuff/dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newstuff/dialog.cpp b/src/newstuff/dialog.cpp index 56f1954..52a1922 100644 --- a/src/newstuff/dialog.cpp +++ b/src/newstuff/dialog.cpp @@ -540,7 +540,7 @@ void Dialog::slotPreviewResult(TDEIO::Job* job_) { if(!pix.isNull()) { if(pix.width() > 64 || pix.height() > 64) { - pix.convertFromImage(pix.convertToImage().smoothScale(64, 64, TQ_ScaleMin)); + pix.convertFromImage(pix.convertToImage().smoothScale(64, 64, TQImage::ScaleMin)); } // only set label if it's still current if(m_listView->selectedItem() == m_lastPreviewItem) { |