diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:53:19 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-04 10:29:39 +0900 |
commit | 4396343fcc0f4dfd74042cbee01e311f6601f3ac (patch) | |
tree | 09ed426853fb47f0e0c0d24bdf2d27200c447ece /kooka/kookaprint.cpp | |
parent | 3eed571e596d6f96c676abc5cda6dd2f16756bc2 (diff) | |
download | tdegraphics-4396343fcc0f4dfd74042cbee01e311f6601f3ac.tar.gz tdegraphics-4396343fcc0f4dfd74042cbee01e311f6601f3ac.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 0e051a3c83fc5e121be7a0497c823ed9546157eb)
Diffstat (limited to 'kooka/kookaprint.cpp')
-rw-r--r-- | kooka/kookaprint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kooka/kookaprint.cpp b/kooka/kookaprint.cpp index 2a8cdfba..84f7faed 100644 --- a/kooka/kookaprint.cpp +++ b/kooka/kookaprint.cpp @@ -112,7 +112,7 @@ bool KookaPrint::printImage( KookaImage *img ) kdDebug(28000) << "Scaling to printer size " << newWidth << " x " << newHeight << endl; - tmpImg = img->smoothScale(newWidth, newHeight, TQ_ScaleFree); + tmpImg = img->smoothScale(newWidth, newHeight, TQImage::ScaleFree); TQSize sz = tmpImg.size(); // the current image size TQSize maxOnPage = maxPageSize(); // the maximum space on one side @@ -177,7 +177,7 @@ void KookaPrint::printFittingToPage(KookaImage *img) newHeight = int( double( img->height() ) * hAspect ); } - tmpImg = img->smoothScale(newWidth, newHeight, TQ_ScaleFree); + tmpImg = img->smoothScale(newWidth, newHeight, TQImage::ScaleFree); m_painter->drawImage( 0,0, tmpImg ); |