summaryrefslogtreecommitdiffstats
path: root/tdeio/tdeio/dataprotocol.cpp
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 /tdeio/tdeio/dataprotocol.cpp
parentb46a7c35c167304acc48675b979ca8b32bc3d293 (diff)
downloadtdelibs-72849e2a6f973af3eeaa573a66635e37cc427bb0.tar.gz
tdelibs-72849e2a6f973af3eeaa573a66635e37cc427bb0.zip
Fix remnant QMIN/QMAX to TQMIN/TQMAX.
Diffstat (limited to 'tdeio/tdeio/dataprotocol.cpp')
-rw-r--r--tdeio/tdeio/dataprotocol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeio/tdeio/dataprotocol.cpp b/tdeio/tdeio/dataprotocol.cpp
index 8478ea0cb..62ba52a6b 100644
--- a/tdeio/tdeio/dataprotocol.cpp
+++ b/tdeio/tdeio/dataprotocol.cpp
@@ -266,7 +266,7 @@ void DataProtocol::get(const KURL& url) {
parseDataHeader(url,hdr);
int size = (int)hdr.url.length();
- int data_ofs = QMIN(hdr.data_offset,size);
+ int data_ofs = TQMIN(hdr.data_offset,size);
// FIXME: string is copied, would be nice if we could have a reference only
TQString url_data = hdr.url.mid(data_ofs);
TQCString outData;