diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-28 00:55:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-28 00:55:13 +0300 |
commit | 01a0e4b658241cc3dbd8a5d11d34a6de48dab159 (patch) | |
tree | 37294c079b9a05768b7380f7595784eb73485769 /src/gui/windows/buyselldialog.h | |
parent | 072b727ae4d072d6c84f3331d78ca5a2ac76d271 (diff) | |
download | plus-01a0e4b658241cc3dbd8a5d11d34a6de48dab159.tar.gz plus-01a0e4b658241cc3dbd8a5d11d34a6de48dab159.tar.bz2 plus-01a0e4b658241cc3dbd8a5d11d34a6de48dab159.tar.xz plus-01a0e4b658241cc3dbd8a5d11d34a6de48dab159.zip |
Add strong typed bool type Visible.
Diffstat (limited to 'src/gui/windows/buyselldialog.h')
-rw-r--r-- | src/gui/windows/buyselldialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/windows/buyselldialog.h b/src/gui/windows/buyselldialog.h index 14121715f..573435846 100644 --- a/src/gui/windows/buyselldialog.h +++ b/src/gui/windows/buyselldialog.h @@ -23,6 +23,8 @@ #ifndef GUI_WINDOWS_BUYSELLDIALOG_H #define GUI_WINDOWS_BUYSELLDIALOG_H +#include "enums/simpletypes/visible.h" + #include "gui/widgets/window.h" #include "listeners/actionlistener.h" @@ -54,7 +56,7 @@ class BuySellDialog final : public Window, void init(); - void setVisible(bool visible) override final; + void setVisible(Visible visible) override final; /** * Called when receiving actions from the widgets. |