diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/kconfigdata.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/core/kconfigdata.h b/src/core/kconfigdata.h index dd396fc8..0ca228fe 100644 --- a/src/core/kconfigdata.h +++ b/src/core/kconfigdata.h @@ -139,12 +139,12 @@ struct KEntryKey {   */  inline bool operator<(const KEntryKey &k1, const KEntryKey &k2)  { -    int result = qstrcmp(k1.mGroup, k2.mGroup); +    int result = qstrcmp(k1.mGroup.data(), k2.mGroup.data());      if (result != 0) {          return result < 0;      } -    result = qstrcmp(k1.mKey, k2.mKey); +    result = qstrcmp(k1.mKey.data(), k2.mKey.data());      if (result != 0) {          return result < 0;      } | 
