forked from qt-creator/qt-creator
Core::Id: Remove some explicit casts to Core::Id
Change-Id: Ibe505c8331f7d1280fdb8784a00321742f5d94cb Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -1048,10 +1048,10 @@ Utils::StyledBar *HelpPlugin::createIconToolBar(bool external)
|
||||
tr("Add Bookmark"), toolBar);
|
||||
connect(bookmark, SIGNAL(triggered()), this, SLOT(addBookmark()));
|
||||
} else {
|
||||
home = Core::ActionManager::command(Core::Id("Help.Home"))->action();
|
||||
back = Core::ActionManager::command(Core::Id("Help.Previous"))->action();
|
||||
next = Core::ActionManager::command(Core::Id("Help.Next"))->action();
|
||||
bookmark = Core::ActionManager::command(Core::Id("Help.AddBookmark"))->action();
|
||||
home = Core::ActionManager::command("Help.Home")->action();
|
||||
back = Core::ActionManager::command("Help.Previous")->action();
|
||||
next = Core::ActionManager::command("Help.Next")->action();
|
||||
bookmark = Core::ActionManager::command("Help.AddBookmark")->action();
|
||||
}
|
||||
|
||||
setupNavigationMenus(back, next, toolBar);
|
||||
|
||||
Reference in New Issue
Block a user