SVN commit 443235 by lukas: little fixlet for non-English users mostly: sort the applets alphabetically in the correct order. Previously I thought we had lost some of the applets, only to find them at the very end of the list :-( M +3 -4 appletinfo.cpp --- branches/KDE/3.5/kdebase/kicker/libkicker/appletinfo.cpp #443234:443235 @@ -81,16 +81,15 @@ bool AppletInfo::operator<( const AppletInfo& rhs ) const { - return name().lower() < rhs.name().lower(); + return ( QString::localeAwareCompare( name(), rhs.name() ) < 0 ); } bool AppletInfo::operator> ( const AppletInfo& rhs ) const { - return name().lower() > rhs.name().lower(); + return ( QString::localeAwareCompare( name(), rhs.name() ) > 0 ); } bool AppletInfo::operator<= ( const AppletInfo& rhs ) const { - return name().lower() <= rhs.name().lower(); + return ( QString::localeAwareCompare( name(), rhs.name() ) <= 0 ); } -