Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
minor change to compare function usage
git-svn-id: http://svn.osgeo.org/qgis/trunk@5453 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed May 14, 2006
1 parent d9f893f commit aecc87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgisapp.cpp
Expand Up @@ -4413,7 +4413,7 @@ QMenu* QgisApp::getPluginMenu(QString menuName)
// This bit of code assumes that the menu items are already in
// alphabetical order, which they will be if the menus are all
// created using this function.
if (QString::localeAwareCompare(menuName, actions.at(i)->text()) <= 0)
if (menuName.localeAwareCompare(actions.at(i)->text()) <= 0)
before = actions.at(i);
}

Expand Down

0 comments on commit aecc87d

Please sign in to comment.