summaryrefslogtreecommitdiff
path: root/src/gui/windows/buyselldialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-05 18:29:07 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-05 18:29:07 +0300
commit71fd4e8d3255e15c16a4f4b51c87222c661a5b33 (patch)
tree3942aec29f33b5ea2aa2e353451e10648f1bbb82 /src/gui/windows/buyselldialog.cpp
parent45460ca58b3cbf6d92fe3cac1311bbfc9d00e841 (diff)
downloadManaVerse-71fd4e8d3255e15c16a4f4b51c87222c661a5b33.tar.gz
ManaVerse-71fd4e8d3255e15c16a4f4b51c87222c661a5b33.tar.bz2
ManaVerse-71fd4e8d3255e15c16a4f4b51c87222c661a5b33.tar.xz
ManaVerse-71fd4e8d3255e15c16a4f4b51c87222c661a5b33.zip
Add strong typed bool type for modal bool flag.
Diffstat (limited to 'src/gui/windows/buyselldialog.cpp')
-rw-r--r--src/gui/windows/buyselldialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/buyselldialog.cpp b/src/gui/windows/buyselldialog.cpp
index cead0d983..ea90f756a 100644
--- a/src/gui/windows/buyselldialog.cpp
+++ b/src/gui/windows/buyselldialog.cpp
@@ -37,7 +37,7 @@ BuySellDialog::DialogList BuySellDialog::dialogInstances;
BuySellDialog::BuySellDialog(const int npcId) :
// TRANSLATORS: shop window name
- Window(_("Shop"), false, nullptr, "buysell.xml"),
+ Window(_("Shop"), Modal_false, nullptr, "buysell.xml"),
ActionListener(),
mNpcId(npcId),
mNick(""),
@@ -48,7 +48,7 @@ BuySellDialog::BuySellDialog(const int npcId) :
BuySellDialog::BuySellDialog(const std::string &nick) :
// TRANSLATORS: shop window name
- Window(_("Shop"), false, nullptr, "buysell.xml"),
+ Window(_("Shop"), Modal_false, nullptr, "buysell.xml"),
ActionListener(),
mNpcId(-1),
mNick(nick),