diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:52:18 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:52:18 +0900 |
commit | dedeb493d225084b3e7d477b4ebfc3894b3330a2 (patch) | |
tree | b0fbbb3d0c78367f4f7d816f571cddab027f1ad2 /konq-plugins/sidebar | |
parent | ebb204be62fcfced4a20f6a908ab3bd6003a09d6 (diff) | |
download | tdeaddons-dedeb493d225084b3e7d477b4ebfc3894b3330a2.tar.gz tdeaddons-dedeb493d225084b3e7d477b4ebfc3894b3330a2.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'konq-plugins/sidebar')
-rw-r--r-- | konq-plugins/sidebar/newsticker/nsstacktabwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/konq-plugins/sidebar/newsticker/nsstacktabwidget.cpp b/konq-plugins/sidebar/newsticker/nsstacktabwidget.cpp index e70f3ce..52edae0 100644 --- a/konq-plugins/sidebar/newsticker/nsstacktabwidget.cpp +++ b/konq-plugins/sidebar/newsticker/nsstacktabwidget.cpp @@ -171,7 +171,7 @@ namespace KSB_News { TQPixmap pixmap = nsp->pixmap(); if ((pixmap.width() > 88) || (pixmap.height() > 31)) { TQImage image = pixmap.convertToImage(); - pixmap.convertFromImage(image.smoothScale(88, 31, TQ_ScaleMin)); + pixmap.convertFromImage(image.smoothScale(88, 31, TQImage::ScaleMin)); } pb->setPixmap(pixmap); } |