Changeset 7425 for sandbox_qt/src/libraries/util
- Timestamp:
- Sep 12, 2010, 3:12:55 PM (14 years ago)
- Location:
- sandbox_qt/src/libraries/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sandbox_qt/src/libraries/util/Math.h
r7421 r7425 45 45 #include <string> 46 46 #include <cmath> 47 #include <cstdlib> 47 48 48 49 // Certain headers might define unwanted macros... -
sandbox_qt/src/libraries/util/StringUtils.cc
r7421 r7425 532 532 QDir operator/(const QDir& lhs, const QDir& rhs) 533 533 { 534 return (QDir(lhs) /= rhs);534 return QDir(lhs.path() + QDir::separator() + rhs.path()); 535 535 } 536 536
Note: See TracChangeset
for help on using the changeset viewer.