mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
Removed QDebug include, moved updateUndoRedoAction to an anonymous namespace
This commit is contained in:
parent
5d38160239
commit
f9b565a46e
@ -4,7 +4,6 @@
|
||||
#include <stdexcept>
|
||||
|
||||
#include <QCloseEvent>
|
||||
#include <QDebug>
|
||||
#include <QMenuBar>
|
||||
#include <QMdiArea>
|
||||
#include <QDockWidget>
|
||||
@ -102,11 +101,16 @@ void CSVDoc::View::setupFileMenu()
|
||||
file->addAction(exit);
|
||||
}
|
||||
|
||||
static void updateUndoRedoAction(QAction *action, const std::string &settingsKey)
|
||||
namespace
|
||||
{
|
||||
QKeySequence seq;
|
||||
CSMPrefs::State::get().getShortcutManager().getSequence(settingsKey, seq);
|
||||
action->setShortcut(seq);
|
||||
|
||||
void updateUndoRedoAction(QAction *action, const std::string &settingsKey)
|
||||
{
|
||||
QKeySequence seq;
|
||||
CSMPrefs::State::get().getShortcutManager().getSequence(settingsKey, seq);
|
||||
action->setShortcut(seq);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void CSVDoc::View::undoActionChanged()
|
||||
|
Loading…
Reference in New Issue
Block a user