diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-11-17 15:08:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-11-17 15:08:51 +0300 |
commit | 21fa38275fc8ec00d32dd1b2f7fe211a7925a596 (patch) | |
tree | 23d23389f61e7d3a3218491b56a7410015b5b8ba /src/gui/windows | |
parent | 3284121323fffd025c2f3aa958e2121e8b7f8d12 (diff) | |
download | plus-21fa38275fc8ec00d32dd1b2f7fe211a7925a596.tar.gz plus-21fa38275fc8ec00d32dd1b2f7fe211a7925a596.tar.bz2 plus-21fa38275fc8ec00d32dd1b2f7fe211a7925a596.tar.xz plus-21fa38275fc8ec00d32dd1b2f7fe211a7925a596.zip |
fix mplint issue.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/textcommandeditor.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/windows/textcommandeditor.cpp b/src/gui/windows/textcommandeditor.cpp index 115a3bace..bf5e8e00b 100644 --- a/src/gui/windows/textcommandeditor.cpp +++ b/src/gui/windows/textcommandeditor.cpp @@ -47,8 +47,7 @@ TextCommandEditor::TextCommandEditor(TextCommand *const command) : Window(_("Command Editor"), Modal_false, nullptr, "commandeditor.xml"), ActionListener(), mIsMagicCommand(command ? - (command->getCommandType() == TextCommandType::Magic) : - false), + (command->getCommandType() == TextCommandType::Magic) : false), mCommand(command), // TRANSLATORS: command editor button mIsMagic(new RadioButton(this, _("magic"), "magic", mIsMagicCommand)), |