src/qt3support/text/q3textstream.cpp
changeset 30 5dc02b23752f
parent 18 2f34d5167611
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
  2082 {
  2082 {
  2083     int f = flags();
  2083     int f = flags();
  2084     setf( hex, basefield );
  2084     setf( hex, basefield );
  2085     setf( showbase );
  2085     setf( showbase );
  2086     unsetf( uppercase );
  2086     unsetf( uppercase );
  2087     output_int( I_LONG | I_UNSIGNED, (ulong)ptr, FALSE );
  2087     output_int( I_LONG | I_UNSIGNED, (quintptr)ptr, FALSE );
  2088     flags( f );
  2088     flags( f );
  2089     return *this;
  2089     return *this;
  2090 }
  2090 }
  2091 
  2091 
  2092 
  2092