summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2010-02-25 16:37:43 -0500
committerChuck Miller <shadowmil@gmail.com>2010-02-25 17:23:17 -0500
commit5ff79d2bff559624de5fc23cbba2703fbe5fc936 (patch)
treef200c755c1848335bffd643d7789579c990ab12c /src/gui
parent34ce2c58ecfe9bfb04688af321e68f80236d104d (diff)
downloadmana-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/gui')
-rw-r--r--src/gui/beingpopup.cpp4
-rw-r--r--src/gui/beingpopup.h6
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();