We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent d9f893f commit aecc87dCopy full SHA for aecc87d
src/gui/qgisapp.cpp
@@ -4413,7 +4413,7 @@ QMenu* QgisApp::getPluginMenu(QString menuName)
4413
// This bit of code assumes that the menu items are already in
4414
// alphabetical order, which they will be if the menus are all
4415
// created using this function.
4416
- if (QString::localeAwareCompare(menuName, actions.at(i)->text()) <= 0)
+ if (menuName.localeAwareCompare(actions.at(i)->text()) <= 0)
4417
before = actions.at(i);
4418
}
4419
0 commit comments