diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-11-20 10:50:00 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-11-20 10:50:00 +0000 |
commit | 5a7abdafdac8f6ddd7972cadbc7e20563a0a29fc (patch) | |
tree | 95684590a32266b28f046475cfa1926c99f67e52 /src/gui/char_select.h | |
parent | cf36850d2bdda67cb472d938ed58053a92fa6935 (diff) | |
download | mana-client-5a7abdafdac8f6ddd7972cadbc7e20563a0a29fc.tar.gz mana-client-5a7abdafdac8f6ddd7972cadbc7e20563a0a29fc.tar.bz2 mana-client-5a7abdafdac8f6ddd7972cadbc7e20563a0a29fc.tar.xz mana-client-5a7abdafdac8f6ddd7972cadbc7e20563a0a29fc.zip |
Merged revisions 3629-3630 via svnmerge from
https://themanaworld.svn.sourceforge.net/svnroot/themanaworld/tmw/trunk
(but kept looks in Being class, since eAthena works that way)
........
r3629 | gmelquio | 2007-10-18 21:00:38 +0200 (Thu, 18 Oct 2007) | 1 line
Removed player looks from generic beings. Prevented client termination on missing sprites. Merged weapon-type and attack-type fields for items.
........
r3630 | gmelquio | 2007-10-18 21:30:57 +0200 (Thu, 18 Oct 2007) | 1 line
Fixed changelog message.
........
Diffstat (limited to 'src/gui/char_select.h')
-rw-r--r-- | src/gui/char_select.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/char_select.h b/src/gui/char_select.h index 00b1c51d..283ecf42 100644 --- a/src/gui/char_select.h +++ b/src/gui/char_select.h @@ -50,7 +50,7 @@ class CharSelectDialog : public Window, public gcn::ActionListener */ CharSelectDialog(Network *network, LockedArray<LocalPlayer*> *charInfo, - unsigned char sex); + unsigned char gender); void action(const gcn::ActionEvent &event); @@ -78,7 +78,7 @@ class CharSelectDialog : public Window, public gcn::ActionListener PlayerBox *mPlayerBox; - unsigned char mSex; + unsigned char mGender; bool mCharSelected; /** @@ -104,7 +104,7 @@ class CharCreateDialog : public Window, public gcn::ActionListener * Constructor. */ CharCreateDialog(Window *parent, int slot, Network *network, - unsigned char sex); + unsigned char gender); /** * Destructor. |