diff options
Diffstat (limited to 'src/gui/itemcontainer.h')
-rw-r--r-- | src/gui/itemcontainer.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/gui/itemcontainer.h b/src/gui/itemcontainer.h index 5d22b658..8927b001 100644 --- a/src/gui/itemcontainer.h +++ b/src/gui/itemcontainer.h @@ -108,29 +108,30 @@ class ItemContainer : public gcn::Widget, private: /** - * Find the current item index by the most recently used item ID + + * Sets the currently selected item. Invalid (e.g., negative) indices set `no item'. */ - void refindSelectedItem(void); + void setSelectedItemIndex(int index); /** - * Sets the currently selected item. Invalid (e.g., negative) indices set `no item'. + * Find the current item index by the most recently used item ID */ - void setSelectedItemIndex(int index); + void refindSelectedItem(void); /** * Determine and set the height of the container. */ - void recalculateHeight(); + void recalculateHeight(void); /** * Sends out selection events to the list of selection listeners. */ - void distributeValueChangedEvent(); + void distributeValueChangedEvent(void); Inventory *mInventory; Image *mSelImg; int mSelectedItemIndex; - int mLastSelectedItemId; // last selected item ID. If we lose the item, find again by ID. + int mLastSelectedItemId; // last selected item ID. If we lose the item, find again by ID. int mMaxItems; int mOffset; |