Changeset 361 for trunk/src/corelib/io
- Timestamp:
- Nov 30, 2009, 12:41:10 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/corelib/io/qfsfileengine_os2.cpp
r355 r361 712 712 // On OS/2, the absolute path always contains a "X:/" at the begining 713 713 // where X is the drive letter, or "//" if it's a network share 714 if (!ret.startsWith( "//")) {714 if (!ret.startsWith()) { 715 715 Q_ASSERT(ret.length() >= 2); 716 716 Q_ASSERT(ret.at(0).isLetter()); … … 729 729 if (file == AbsolutePathName) { 730 730 int slash = ret.lastIndexOf(QLatin1Char('/')); 731 if (!ret.startsWith( "//")) {731 if (!ret.startsWith()) { 732 732 Q_ASSERT(slash >= 2); 733 733 if (slash == 2) … … 751 751 if (!ret.isEmpty() && file == CanonicalPathName) { 752 752 int slash = ret.lastIndexOf(QLatin1Char('/')); 753 if (!ret.startsWith( "//")) {753 if (!ret.startsWith()) { 754 754 Q_ASSERT(slash >= 2); 755 755 if (slash == 2) … … 818 818 // On OS/2, the absolute path always contains a "X:/" at the begining 819 819 // where X is the drive letter, or "//" if it's a network share 820 if (!ret.startsWith( "//")) {820 if (!ret.startsWith()) { 821 821 Q_ASSERT(ret.length() >= 2); 822 822 Q_ASSERT(ret.at(0).isLetter());
Note:
See TracChangeset
for help on using the changeset viewer.