diff options
Diffstat (limited to 'puic/form.cpp')
-rw-r--r-- | puic/form.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/puic/form.cpp b/puic/form.cpp index 853c601..e54f338 100644 --- a/puic/form.cpp +++ b/puic/form.cpp @@ -47,14 +47,14 @@ static TQByteArray tqUncompress( const uchar* data, int nbytes ) { if ( !data ) { #if defined(TQT_CHECK_RANGE) - qWarning( "qUncompress: data is NULL." ); + tqWarning( "qUncompress: data is NULL." ); #endif return TQByteArray(); } if ( nbytes <= 4 ) { #if defined(TQT_CHECK_RANGE) if ( nbytes < 4 || ( data[0]!=0 || data[1]!=0 || data[2]!=0 || data[3]!=0 ) ) - qWarning( "qUncompress: Input data is corrupted." ); + tqWarning( "qUncompress: Input data is corrupted." ); #endif return TQByteArray(); } @@ -74,7 +74,7 @@ static TQByteArray tqUncompress( const uchar* data, int nbytes ) break; case Z_MEM_ERROR: #if defined(TQT_CHECK_RANGE) - qWarning( "qUncompress: Z_MEM_ERROR: Not enough memory." ); + tqWarning( "qUncompress: Z_MEM_ERROR: Not enough memory." ); #endif break; case Z_BUF_ERROR: @@ -82,7 +82,7 @@ static TQByteArray tqUncompress( const uchar* data, int nbytes ) break; case Z_DATA_ERROR: #if defined(TQT_CHECK_RANGE) - qWarning( "qUncompress: Z_DATA_ERROR: Input data is corrupted." ); + tqWarning( "qUncompress: Z_DATA_ERROR: Input data is corrupted." ); #endif break; } |