summaryrefslogtreecommitdiff
path: root/src/gui/partywindow.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-04-16 09:11:26 -0600
committerJared Adams <jaxad0127@gmail.com>2009-04-16 09:12:13 -0600
commite8dd52d8264cd0eec1f5d32c1f809a164e2d2f59 (patch)
tree2b4a92f04d0642cbd4b557b12f5de9ef31d63f2a /src/gui/partywindow.h
parent86b5f4b9183a2567a2b9c486a00465446206bbba (diff)
downloadmana-client-e8dd52d8264cd0eec1f5d32c1f809a164e2d2f59.tar.gz
mana-client-e8dd52d8264cd0eec1f5d32c1f809a164e2d2f59.tar.bz2
mana-client-e8dd52d8264cd0eec1f5d32c1f809a164e2d2f59.tar.xz
mana-client-e8dd52d8264cd0eec1f5d32c1f809a164e2d2f59.zip
Fix an oddity in PartyWindow
Diffstat (limited to 'src/gui/partywindow.h')
-rw-r--r--src/gui/partywindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/partywindow.h b/src/gui/partywindow.h
index b1967b0e..60c4da29 100644
--- a/src/gui/partywindow.h
+++ b/src/gui/partywindow.h
@@ -72,12 +72,12 @@ class PartyWindow : public Window, gcn::ActionListener
void draw(gcn::Graphics *graphics);
/**
- * Find a party member based on ID
+ * Find a party member based on ID. Returns NULL if not found.
*/
- PartyMember *findMember(int id) { return mMembers[id]; }
+ PartyMember *findMember(int id);
/**
- * Find a party member based on ID. Creates if it doesn't already exist.
+ * Find a party member based on ID. Creates if not found.
*/
PartyMember *findMember2(int id);