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/inventorywindow.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/inventorywindow.h')
-rw-r--r-- | src/gui/windows/inventorywindow.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/windows/inventorywindow.h b/src/gui/windows/inventorywindow.h index 209e9c171..eb82b0fb5 100644 --- a/src/gui/windows/inventorywindow.h +++ b/src/gui/windows/inventorywindow.h @@ -25,6 +25,8 @@ #include "inventory.h" +#include "enums/simpletypes/visible.h" + #include "gui/widgets/window.h" #include "listeners/actionlistener.h" @@ -122,7 +124,7 @@ class InventoryWindow final : public Window, /** * Sets whether the split button should be shown. */ - void setSplitAllowed(const bool allowed); + void setSplitAllowed(const Visible allowed); /** * Closes the Storage Window, as well as telling the server that the @@ -153,7 +155,7 @@ class InventoryWindow final : public Window, void mouseExited(MouseEvent &event) override final; - void setVisible(bool visible) override final; + void setVisible(Visible visible) override final; void unsetInventory(); |