summaryrefslogtreecommitdiffstats
path: root/kimgio
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-11-28 13:28:01 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-11-28 13:28:01 -0600
commit72849e2a6f973af3eeaa573a66635e37cc427bb0 (patch)
tree2d3beea645819ba70a32c19a092a874f4e89c399 /kimgio
parentb46a7c35c167304acc48675b979ca8b32bc3d293 (diff)
downloadtdelibs-72849e2a6f973af3eeaa573a66635e37cc427bb0.tar.gz
tdelibs-72849e2a6f973af3eeaa573a66635e37cc427bb0.zip
Fix remnant QMIN/QMAX to TQMIN/TQMAX.
Diffstat (limited to 'kimgio')
-rw-r--r--kimgio/rgb.cpp2
-rw-r--r--kimgio/xcf.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/kimgio/rgb.cpp b/kimgio/rgb.cpp
index ae2439083..cf1f2331a 100644
--- a/kimgio/rgb.cpp
+++ b/kimgio/rgb.cpp
@@ -310,7 +310,7 @@ void RLEData::write(TQDataStream& s)
bool RLEData::operator<(const RLEData& b) const
{
uchar ac, bc;
- for (unsigned i = 0; i < QMIN(size(), b.size()); i++) {
+ for (unsigned i = 0; i < TQMIN(size(), b.size()); i++) {
ac = at(i);
bc = b[i];
if (ac != bc)
diff --git a/kimgio/xcf.cpp b/kimgio/xcf.cpp
index 252b3e036..1c0bb79d1 100644
--- a/kimgio/xcf.cpp
+++ b/kimgio/xcf.cpp
@@ -116,7 +116,7 @@ XCFImageFormat::XCFImageFormat()
inline
int XCFImageFormat::add_lut( int a, int b ) {
- return QMIN( a + b, 255 );
+ return TQMIN( a + b, 255 );
}
void XCFImageFormat::readXCF(TQImageIO *io)