summaryrefslogtreecommitdiff
path: root/src/gui/windows/textcommandeditor.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-11-17 15:08:51 +0300
committerAndrei Karas <akaras@inbox.ru>2015-11-17 15:08:51 +0300
commit21fa38275fc8ec00d32dd1b2f7fe211a7925a596 (patch)
tree23d23389f61e7d3a3218491b56a7410015b5b8ba /src/gui/windows/textcommandeditor.cpp
parent3284121323fffd025c2f3aa958e2121e8b7f8d12 (diff)
downloadplus-21fa38275fc8ec00d32dd1b2f7fe211a7925a596.tar.gz
plus-21fa38275fc8ec00d32dd1b2f7fe211a7925a596.tar.bz2
plus-21fa38275fc8ec00d32dd1b2f7fe211a7925a596.tar.xz
plus-21fa38275fc8ec00d32dd1b2f7fe211a7925a596.zip
fix mplint issue.
Diffstat (limited to 'src/gui/windows/textcommandeditor.cpp')
-rw-r--r--src/gui/windows/textcommandeditor.cpp3
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)),