diff options
Diffstat (limited to 'src/gui/status.h')
-rw-r--r-- | src/gui/status.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/status.h b/src/gui/status.h index d6abd7af..99fbadf5 100644 --- a/src/gui/status.h +++ b/src/gui/status.h @@ -64,7 +64,7 @@ class StatusWindow : public Window, public gcn::ActionListener { private: /** - * Updates this dialog with values from PLAYER_INFO *char_info + * Updates this dialog with values from <code>player_info</code> */ void update(); @@ -73,7 +73,11 @@ class StatusWindow : public Window, public gcn::ActionListener { gcn::Label *expLabel, *jobExpLabel; ProgressBar *healthBar, *manaBar; ProgressBar *xpBar, *jobXpBar; - gcn::Button *statsButton, *skillsButton, *inventoryButton, *setupButton, *equipmentButton; + gcn::Button *statsButton; + gcn::Button *skillsButton; + gcn::Button *inventoryButton; + gcn::Button *setupButton; + gcn::Button *equipmentButton; }; extern StatusWindow *statusWindow; |