From 72849e2a6f973af3eeaa573a66635e37cc427bb0 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Thu, 28 Nov 2013 13:28:01 -0600 Subject: Fix remnant QMIN/QMAX to TQMIN/TQMAX. --- kimgio/rgb.cpp | 2 +- kimgio/xcf.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'kimgio') 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) -- cgit v1.2.1