summaryrefslogtreecommitdiffstats
path: root/puic
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-14 21:13:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-14 21:13:36 -0600
commit8767713ab09296bf7c13c87e06c8d235da42869b (patch)
treeb96d3052297d197824a7f3b000d9f1294e5a1c29 /puic
parent7aa035c4f588c04c750241d2ccbb10f3410b6f95 (diff)
downloadlibtqt-perl-8767713ab09296bf7c13c87e06c8d235da42869b.tar.gz
libtqt-perl-8767713ab09296bf7c13c87e06c8d235da42869b.zip
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'puic')
-rw-r--r--puic/form.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/puic/form.cpp b/puic/form.cpp
index 55ee7a7..f909b26 100644
--- a/puic/form.cpp
+++ b/puic/form.cpp
@@ -43,7 +43,7 @@
#if( TQT_VERSION < 0x030101 )
# include <zlib.h>
-static TQByteArray qUncompress( const uchar* data, int nbytes )
+static TQByteArray tqUncompress( const uchar* data, int nbytes )
{
if ( !data ) {
#if defined(TQT_CHECK_RANGE)
@@ -117,13 +117,13 @@ static TQByteArray unzipXPM( TQString data, ulong& length )
r += l - 'a' + 10;
ba[ i ] = r;
}
- // qUncompress() expects the first 4 bytes to be the expected length of the
+ // tqUncompress() expects the first 4 bytes to be the expected length of the
// uncompressed data
ba[0] = ( length & 0xff000000 ) >> 24;
ba[1] = ( length & 0x00ff0000 ) >> 16;
ba[2] = ( length & 0x0000ff00 ) >> 8;
ba[3] = ( length & 0x000000ff );
- TQByteArray baunzip = qUncompress( ba, baSize );
+ TQByteArray baunzip = tqUncompress( ba, baSize );
delete[] ba;
return baunzip;
}