From 01a0e4b658241cc3dbd8a5d11d34a6de48dab159 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 28 May 2015 00:55:13 +0300 Subject: Add strong typed bool type Visible. --- src/gui/windows/textcommandeditor.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/gui/windows/textcommandeditor.cpp') diff --git a/src/gui/windows/textcommandeditor.cpp b/src/gui/windows/textcommandeditor.cpp index 3051d4cc6..fdffe0e75 100644 --- a/src/gui/windows/textcommandeditor.cpp +++ b/src/gui/windows/textcommandeditor.cpp @@ -129,9 +129,9 @@ TextCommandEditor::TextCommandEditor(TextCommand *const command) : mDeleteButton->adjustSize(); if (command->getCommandType() == TEXT_COMMAND_MAGIC) - showControls(true); + showControls(Visible_true); else - showControls(false); + showControls(Visible_false); mSymbolTextField->setText(command->getSymbol()); mCommandTextField->setText(command->getCommand()); @@ -188,7 +188,7 @@ void TextCommandEditor::postInit() { Window::postInit(); enableVisibleSound(true); - setVisible(true); + setVisible(Visible_true); } TextCommandEditor::~TextCommandEditor() @@ -204,12 +204,12 @@ void TextCommandEditor::action(const ActionEvent &event) if (eventId == "magic") { mIsMagicCommand = true; - showControls(true); + showControls(Visible_true); } else if (eventId == "other") { mIsMagicCommand = false; - showControls(false); + showControls(Visible_false); } else if (eventId == "save") { @@ -227,7 +227,7 @@ void TextCommandEditor::action(const ActionEvent &event) } } -void TextCommandEditor::showControls(const bool show) +void TextCommandEditor::showControls(const Visible show) { mManaField->setVisible(show); mManaLabel->setVisible(show); -- cgit v1.2.3-70-g09d2