Changeset 13995
- Timestamp:
- Feb 9, 2013, 1:09:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.7x/qt/formatter.cc
r13919 r13995 95 95 Formatter :: memToString( int64_t bytes ) 96 96 { 97 if( bytes < 1)97 if( bytes < 0 ) 98 98 return tr( "Unknown" ); 99 99 else if( !bytes ) … … 109 109 Formatter :: sizeToString( int64_t bytes ) 110 110 { 111 if( bytes < 1)111 if( bytes < 0 ) 112 112 return tr( "Unknown" ); 113 113 else if( !bytes )
Note: See TracChangeset
for help on using the changeset viewer.