TAKEN FROM Qt, because it doesn't expose it intelligently
| 2 | |
| 3 | /// TAKEN FROM Qt, because it doesn't expose it intelligently |
| 4 | static inline QChar getNextChar(const QString &s, int location) |
| 5 | { |
| 6 | return (location < s.length()) ? s.at(location) : QChar(); |
| 7 | } |
| 8 | |
| 9 | /// TAKEN FROM Qt, because it doesn't expose it intelligently |
| 10 | int Strings::naturalCompare(const QString &s1, const QString &s2, Qt::CaseSensitivity cs) |
no test coverage detected