Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #2531
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13518 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed May 17, 2010
1 parent e5cbbfd commit 63693eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/attributetable/qgsattributetableidcolumnpair.cpp
Expand Up @@ -36,6 +36,6 @@ bool QgsAttributeTableIdColumnPair::operator<( const QgsAttributeTableIdColumnPa
return mItem.toDouble() < b.mItem.toDouble();

default:
return mItem.toString() < b.mItem.toString();
return mItem.toString().localeAwareCompare( b.mItem.toString() ) < 0;
}
}

0 comments on commit 63693eb

Please sign in to comment.