diff options
Diffstat (limited to 'ktnef/lib/ktnefproperty.cpp')
-rw-r--r-- | ktnef/lib/ktnefproperty.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ktnef/lib/ktnefproperty.cpp b/ktnef/lib/ktnefproperty.cpp index df04a388..ae43236f 100644 --- a/ktnef/lib/ktnefproperty.cpp +++ b/ktnef/lib/ktnefproperty.cpp @@ -55,13 +55,13 @@ TQString KTNEFProperty::formatValue( const TQVariant& value, bool beautify ) // printable characters TQByteArray arr = value.toByteArray(); bool printable = true; - for ( int i=QMIN( arr.size(), 8 )-1; i>=0 && printable; i-- ) + for ( int i=TQMIN( arr.size(), 8 )-1; i>=0 && printable; i-- ) printable = ( isprint( arr[ i ] ) != 0 ); if ( !printable ) { TQString s; uint i; - uint txtCount = beautify ? QMIN( arr.size(), 32 ) : arr.size(); + uint txtCount = beautify ? TQMIN( arr.size(), 32 ) : arr.size(); for ( i=0; i < txtCount; ++i ) { s.append( TQString().sprintf( "%02X", ( uchar )arr[ i ] ) ); |