We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e88a80a commit a3a7b99Copy full SHA for a3a7b99
src/app/attributetable/qgsattributetableidcolumnpair.cpp
@@ -36,6 +36,6 @@ bool QgsAttributeTableIdColumnPair::operator<( const QgsAttributeTableIdColumnPa
36
return mItem.toDouble() < b.mItem.toDouble();
37
38
default:
39
- return mItem.toString() < b.mItem.toString();
+ return mItem.toString().localeAwareCompare( b.mItem.toString() ) < 0;
40
}
41
0 commit comments