Skip to content

Commit aecc87d

Browse files
author
g_j_m
committedMay 14, 2006
minor change to compare function usage
git-svn-id: http://svn.osgeo.org/qgis/trunk@5453 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent d9f893f commit aecc87d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4413,7 +4413,7 @@ QMenu* QgisApp::getPluginMenu(QString menuName)
44134413
// This bit of code assumes that the menu items are already in
44144414
// alphabetical order, which they will be if the menus are all
44154415
// created using this function.
4416-
if (QString::localeAwareCompare(menuName, actions.at(i)->text()) <= 0)
4416+
if (menuName.localeAwareCompare(actions.at(i)->text()) <= 0)
44174417
before = actions.at(i);
44184418
}
44194419

0 commit comments

Comments
 (0)
Please sign in to comment.