+ fixes #0001719: Show current shortcuts (S) in menus and hover text.

This commit is contained in:
wmayer
2014-08-31 14:28:33 +02:00
parent 80e80fef83
commit ce528d1c4a
13 changed files with 141 additions and 66 deletions

View File

@@ -316,7 +316,7 @@ Action * StdCmdDockViewMenu::createAction(void)
{
Action *pcAction;
pcAction = new DockWidgetAction(this, getMainWindow());
applyCommandData(pcAction);
applyCommandData(this->className(), pcAction);
return pcAction;
}
@@ -351,7 +351,7 @@ Action * StdCmdToolBarMenu::createAction(void)
{
Action *pcAction;
pcAction = new ToolBarAction(this, getMainWindow());
applyCommandData(pcAction);
applyCommandData(this->className(), pcAction);
return pcAction;
}