mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 22:45:15 -04: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 <stdexcept>
|
||||||
|
|
||||||
#include <QCloseEvent>
|
#include <QCloseEvent>
|
||||||
#include <QDebug>
|
|
||||||
#include <QMenuBar>
|
#include <QMenuBar>
|
||||||
#include <QMdiArea>
|
#include <QMdiArea>
|
||||||
#include <QDockWidget>
|
#include <QDockWidget>
|
||||||
@ -102,11 +101,16 @@ void CSVDoc::View::setupFileMenu()
|
|||||||
file->addAction(exit);
|
file->addAction(exit);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void updateUndoRedoAction(QAction *action, const std::string &settingsKey)
|
namespace
|
||||||
{
|
{
|
||||||
QKeySequence seq;
|
|
||||||
CSMPrefs::State::get().getShortcutManager().getSequence(settingsKey, seq);
|
void updateUndoRedoAction(QAction *action, const std::string &settingsKey)
|
||||||
action->setShortcut(seq);
|
{
|
||||||
|
QKeySequence seq;
|
||||||
|
CSMPrefs::State::get().getShortcutManager().getSequence(settingsKey, seq);
|
||||||
|
action->setShortcut(seq);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSVDoc::View::undoActionChanged()
|
void CSVDoc::View::undoActionChanged()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user