diff options
Diffstat (limited to 'kimgio')
-rw-r--r-- | kimgio/psd.cpp | 2 |
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) |