diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:17:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:17:02 -0600 |
commit | 3fda03faf1b67aa1221099f3a2153a0aa40811ef (patch) | |
tree | 99c8ff09fb5c748c0e2fbb19e56f102476c2eb49 /qtruby/rubylib/designer/rbuic/form.cpp | |
parent | 7e7a6b6965f6463062bf5b60feca8b50d4434b96 (diff) | |
download | tdebindings-3fda03faf1b67aa1221099f3a2153a0aa40811ef.tar.gz tdebindings-3fda03faf1b67aa1221099f3a2153a0aa40811ef.zip |
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'qtruby/rubylib/designer/rbuic/form.cpp')
-rw-r--r-- | qtruby/rubylib/designer/rbuic/form.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qtruby/rubylib/designer/rbuic/form.cpp b/qtruby/rubylib/designer/rbuic/form.cpp index 42ec751f..13241e82 100644 --- a/qtruby/rubylib/designer/rbuic/form.cpp +++ b/qtruby/rubylib/designer/rbuic/form.cpp @@ -62,13 +62,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; } |