Skip to content

Commit a3a7b99

Browse files
author
jef
committed
fix #2531
git-svn-id: http://svn.osgeo.org/qgis/trunk@13518 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e88a80a commit a3a7b99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/attributetable/qgsattributetableidcolumnpair.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ bool QgsAttributeTableIdColumnPair::operator<( const QgsAttributeTableIdColumnPa
3636
return mItem.toDouble() < b.mItem.toDouble();
3737

3838
default:
39-
return mItem.toString() < b.mItem.toString();
39+
return mItem.toString().localeAwareCompare( b.mItem.toString() ) < 0;
4040
}
4141
}

0 commit comments

Comments
 (0)