diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-11-28 13:30:19 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-11-28 13:30:19 -0600 |
commit | 90f1f50f00651f7bc9f8acf50556968b4288400d (patch) | |
tree | 8d5df88cb28a00efd2c8b9f3c6b1ca7e6063ada9 /ksplashml/themeengine/standard/wndicon.cpp | |
parent | 1c37295608c6d783b2b710f423befbcfb0068bbd (diff) | |
download | tdebase-90f1f50f00651f7bc9f8acf50556968b4288400d.tar.gz tdebase-90f1f50f00651f7bc9f8acf50556968b4288400d.zip |
Fix remnant QMIN/QMAX to TQMIN/TQMAX.
Diffstat (limited to 'ksplashml/themeengine/standard/wndicon.cpp')
-rw-r--r-- | ksplashml/themeengine/standard/wndicon.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ksplashml/themeengine/standard/wndicon.cpp b/ksplashml/themeengine/standard/wndicon.cpp index 030456f4e..856547895 100644 --- a/ksplashml/themeengine/standard/wndicon.cpp +++ b/ksplashml/themeengine/standard/wndicon.cpp @@ -122,7 +122,7 @@ TQPoint WndIcon::determinePosition() nSlot = ( DW / wid ); while( x > nSlot ) { - x = QMAX(0,x-nSlot); + x = TQMAX(0,x-nSlot); y++; } X = (3) + ((x - 1) * wid); @@ -134,7 +134,7 @@ TQPoint WndIcon::determinePosition() nSlot = ( DW / wid ); while( x > nSlot ) { - x = QMAX(0,x-nSlot); + x = TQMAX(0,x-nSlot); y++; } X = (3) + ((x - 1) * wid); @@ -146,7 +146,7 @@ TQPoint WndIcon::determinePosition() nSlot = ( DW / wid ); while( x > nSlot ) { - x = QMAX(0,x-nSlot); + x = TQMAX(0,x-nSlot); y++; } X = (DW - 3) - (( x ) * wid ); @@ -158,7 +158,7 @@ TQPoint WndIcon::determinePosition() nSlot = ( DW / wid ); while( x > nSlot ) { - x = QMAX(0,x-nSlot); + x = TQMAX(0,x-nSlot); y++; } X = (DW - 3) - (( x ) * wid ); @@ -170,7 +170,7 @@ TQPoint WndIcon::determinePosition() nSlot = ( DH / wid ); while( x > nSlot ) { - x = QMAX(0,x-nSlot); + x = TQMAX(0,x-nSlot); y++; } X = (3) + (( y - 1 ) * wid ); @@ -182,7 +182,7 @@ TQPoint WndIcon::determinePosition() nSlot = ( DH / wid ); while( x > nSlot ) { - x = QMAX(0,x-nSlot); + x = TQMAX(0,x-nSlot); y++; } X = (DW - 3) - (( y ) * wid ); @@ -194,7 +194,7 @@ TQPoint WndIcon::determinePosition() nSlot = ( DH / wid ); while( x > nSlot ) { - x = QMAX(0,x-nSlot); + x = TQMAX(0,x-nSlot); y++; } X = (3) + (( y - 1 ) * wid ); @@ -206,7 +206,7 @@ TQPoint WndIcon::determinePosition() nSlot = ( DH / wid ); while( x > nSlot ) { - x = QMAX(0,x-nSlot); + x = TQMAX(0,x-nSlot); y++; } X = (DW - 3) - (( y ) * wid ); |