diff options
author | Chuck Miller <shadowmil@gmail.com> | 2010-02-25 16:37:43 -0500 |
---|---|---|
committer | Chuck Miller <shadowmil@gmail.com> | 2010-02-25 17:23:17 -0500 |
commit | 5ff79d2bff559624de5fc23cbba2703fbe5fc936 (patch) | |
tree | f200c755c1848335bffd643d7789579c990ab12c /src | |
parent | 34ce2c58ecfe9bfb04688af321e68f80236d104d (diff) | |
download | mana-client-5ff79d2bff559624de5fc23cbba2703fbe5fc936.tar.gz mana-client-5ff79d2bff559624de5fc23cbba2703fbe5fc936.tar.bz2 mana-client-5ff79d2bff559624de5fc23cbba2703fbe5fc936.tar.xz mana-client-5ff79d2bff559624de5fc23cbba2703fbe5fc936.zip |
Fix some comments in beingpopup
Reviewed-By: Jared Adams
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/beingpopup.cpp | 4 | ||||
-rw-r--r-- | src/gui/beingpopup.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/beingpopup.cpp b/src/gui/beingpopup.cpp index 3d60589f..7fd99371 100644 --- a/src/gui/beingpopup.cpp +++ b/src/gui/beingpopup.cpp @@ -38,14 +38,14 @@ BeingPopup::BeingPopup(): Popup("BeingPopup") { - // Item Name + // Being Name mBeingName = new TextBox(); mBeingName->setFont(boldFont); mBeingName->setPosition(getPadding(), getPadding()); const int fontHeight = getFont()->getHeight(); - // Item Description + // Being's party mBeingParty = new TextBox(); mBeingParty->setPosition(getPadding(), fontHeight); diff --git a/src/gui/beingpopup.h b/src/gui/beingpopup.h index b803aacf..078b84d9 100644 --- a/src/gui/beingpopup.h +++ b/src/gui/beingpopup.h @@ -29,18 +29,18 @@ class Player; class TextBox; /** - * A popup that displays information about an item. + * A popup that displays information about a being. */ class BeingPopup : public Popup { public: /** - * Constructor. Initializes the item popup. + * Constructor. Initializes the being popup. */ BeingPopup(); /** - * Destructor. Cleans up the item popup on deletion. + * Destructor. Cleans up the being popup on deletion. */ ~BeingPopup(); |