diff options
Diffstat (limited to 'src/gui/widgets/itemcontainer.h')
-rw-r--r-- | src/gui/widgets/itemcontainer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/itemcontainer.h b/src/gui/widgets/itemcontainer.h index 006644425..b1a9c30da 100644 --- a/src/gui/widgets/itemcontainer.h +++ b/src/gui/widgets/itemcontainer.h @@ -133,13 +133,13 @@ class ItemContainer final : public Widget, void updateMatrix(); - bool getClickCount() const A_WARN_UNUSED + bool getClickCount() const noexcept2 A_WARN_UNUSED { return mClicks; } - void unsetInventory() + void unsetInventory() noexcept2 { mInventory = nullptr; } - void setInventory(Inventory *const inventory) + void setInventory(Inventory *const inventory) noexcept2 { mInventory = inventory; } void setCellBackgroundImage(const std::string &xmlName); |