Utility function for case insensitive sorting
| 831 | |
| 832 | // Utility function for case insensitive sorting |
| 833 | bool caseInsensitiveLessThan(const QString &s1, const QString &s2) |
| 834 | { |
| 835 | return s1.toLower() < s2.toLower(); |
| 836 | } |
| 837 | |
| 838 | |
| 839 |
nothing calls this directly
no outgoing calls
no test coverage detected