summaryrefslogtreecommitdiff
path: root/src/inventory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inventory.h')
-rw-r--r--src/inventory.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/inventory.h b/src/inventory.h
index ffc2897ca..f94568739 100644
--- a/src/inventory.h
+++ b/src/inventory.h
@@ -33,13 +33,15 @@ class Item;
class InventoryListener
{
-public:
- virtual ~InventoryListener() {}
+ public:
+ virtual ~InventoryListener()
+ { }
- virtual void slotsChanged(Inventory* inventory) = 0;
+ virtual void slotsChanged(Inventory* inventory) = 0;
-protected:
- InventoryListener() {}
+ protected:
+ InventoryListener()
+ { }
};
class Inventory