TAKEN FROM Qt, because it doesn't expose it intelligently
| 45 | |
| 46 | /// TAKEN FROM Qt, because it doesn't expose it intelligently |
| 47 | static inline QChar getNextChar(const QString& s, int location) |
| 48 | { |
| 49 | return (location < s.length()) ? s.at(location) : QChar(); |
| 50 | } |
| 51 | |
| 52 | /// TAKEN FROM Qt, because it doesn't expose it intelligently |
| 53 | int StringUtils::naturalCompare(const QString& s1, const QString& s2, Qt::CaseSensitivity cs) |