summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/msn
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-02 15:53:50 +0900
committerMichele Calgaro <[email protected]>2023-09-04 10:31:40 +0900
commit203566f83535401b5013d37c4e319b1278a4d650 (patch)
treeaeeac7a86d9225fc54cc8c8c73df440fb9ba1ab5 /kopete/protocols/msn
parentc613d3df31b003c077f524cd7184590339b0c04d (diff)
downloadtdenetwork-203566f83535401b5013d37c4e319b1278a4d650.tar.gz
tdenetwork-203566f83535401b5013d37c4e319b1278a4d650.zip
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit d37705184967f236c728938b2824abbed628ce26)
Diffstat (limited to 'kopete/protocols/msn')
-rw-r--r--kopete/protocols/msn/msnprotocol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kopete/protocols/msn/msnprotocol.cpp b/kopete/protocols/msn/msnprotocol.cpp
index d2570586..2b7e8ab6 100644
--- a/kopete/protocols/msn/msnprotocol.cpp
+++ b/kopete/protocols/msn/msnprotocol.cpp
@@ -160,7 +160,7 @@ bool MSNProtocol::validContactId(const TQString& userid)
TQImage MSNProtocol::scalePicture(const TQImage &picture)
{
TQImage img(picture);
- img = img.smoothScale( 96, 96, TQ_ScaleMin );
+ img = img.smoothScale( 96, 96, TQImage::ScaleMin );
// crop image if not square
if(img.width() < img.height())
{