summaryrefslogtreecommitdiffstats
path: root/kimgio
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-27 19:26:26 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-27 19:26:26 +0000
commit2fa036d5898ffd3dee5f4c396b09c7d904c49b5e (patch)
tree61105eaaae5fb7bc23dd0f4e51e5a28fb722603a /kimgio
parentda24d1f16d7461aec72b5a8f3a797acf73d7e6fd (diff)
downloadtdelibs-2fa036d5898ffd3dee5f4c396b09c7d904c49b5e.tar.gz
tdelibs-2fa036d5898ffd3dee5f4c396b09c7d904c49b5e.zip
Aviod conflicts with Qt4 namespace members
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1217530 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kimgio')
-rw-r--r--kimgio/psd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kimgio/psd.cpp b/kimgio/psd.cpp
index 2374b6a97..d1b93b853 100644
--- a/kimgio/psd.cpp
+++ b/kimgio/psd.cpp
@@ -70,7 +70,7 @@ namespace { // Private.
{
char buf[4096];
while (bytes) {
- unsigned int num= QMIN(bytes,sizeof(buf));
+ unsigned int num= TQMIN(bytes,sizeof(buf));
unsigned int l = num;
s.readRawBytes(buf, l);
if(l != num)