diff options
author | Ira Rice <irarice@gmail.com> | 2009-03-14 22:03:30 -0600 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-03-14 22:03:30 -0600 |
commit | a9a1ed080289185cc5e71a127d7fdf35c920de8a (patch) | |
tree | 0c035f9bb4f0fb52196826683eda4fe0ff9b254c /src/gui/chat.h | |
parent | 73fa81961d141b7592862a50993cd998fbd4de31 (diff) | |
download | mana-a9a1ed080289185cc5e71a127d7fdf35c920de8a.tar.gz mana-a9a1ed080289185cc5e71a127d7fdf35c920de8a.tar.bz2 mana-a9a1ed080289185cc5e71a127d7fdf35c920de8a.tar.xz mana-a9a1ed080289185cc5e71a127d7fdf35c920de8a.zip |
Exposed a few more windows to the reset button on the setup window.
These windows required an external declaration to reset.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/chat.h')
-rw-r--r-- | src/gui/chat.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/chat.h b/src/gui/chat.h index 45d0c92f..28408b93 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -236,12 +236,12 @@ class ChatWindow : public Window, public gcn::ActionListener, typedef std::list<std::string> History; typedef History::iterator HistoryIterator; History mHistory; /**< Command history */ - HistoryIterator mCurHist; /**< History iterator */ - Recorder *mRecorder; /**< Recording class */ - char mPartyPrefix; /**< Messages beginning with the prefix are sent to - the party */ - bool mReturnToggles; /**< Marks whether <Return> toggles the chat log - or not */ + HistoryIterator mCurHist; /**< History iterator */ + Recorder *mRecorder; /**< Recording class */ + char mPartyPrefix; /**< Messages beginning with the prefix are + sent to the party */ + bool mReturnToggles; /**< Marks whether <Return> toggles the chat + log or not */ Party *mParty; }; extern ChatWindow *chatWindow; |