Changeset 17745 in vbox for trunk/include/VBox
- Timestamp:
- Mar 12, 2009 1:28:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/string.h
r17742 r17745 473 473 bool endsWith (const Utf8Str &that, CaseSensitivity cs = CaseSensitive) const 474 474 { 475 if (isNull() || that.isNull()) 476 return false; 477 475 478 if (length() < that.length()) 476 479 return false; … … 485 488 bool startsWith (const Utf8Str &that, CaseSensitivity cs = CaseSensitive) const 486 489 { 490 if (isNull() || that.isNull()) 491 return false; 492 487 493 if (length() < that.length()) 488 494 return false;
Note:
See TracChangeset
for help on using the changeset viewer.