Changeset 21404 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Jul 8, 2009 3:19:42 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49780
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/string.cpp
r21394 r21404 139 139 Utf8Str& Utf8Str::toLower() 140 140 { 141 if ( !isEmpty())141 if (length()) 142 142 ::RTStrToLower(m_psz); 143 143 return *this; … … 146 146 Utf8Str& Utf8Str::toUpper() 147 147 { 148 if ( !isEmpty())148 if (length()) 149 149 ::RTStrToUpper(m_psz); 150 150 return *this;
Note:
See TracChangeset
for help on using the changeset viewer.