diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-27 23:43:24 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-29 19:45:53 +0200 |
commit | 3cca6548aefcfe0751ab7b4d70ac71ace486e12e (patch) | |
tree | d4cc812676bc6f31ed5f1da6fd99fe0410abf9cd /src/channel.h | |
parent | 9c99cee38effd341889267c8cda6c964af561aa1 (diff) | |
download | mana-3cca6548aefcfe0751ab7b4d70ac71ace486e12e.tar.gz mana-3cca6548aefcfe0751ab7b4d70ac71ace486e12e.tar.bz2 mana-3cca6548aefcfe0751ab7b4d70ac71ace486e12e.tar.xz mana-3cca6548aefcfe0751ab7b4d70ac71ace486e12e.zip |
Removed underscores from some non-conforming filenames
We don't use underscores in the filenames generally, and let's be
consistent on that matter.
Diffstat (limited to 'src/channel.h')
-rw-r--r-- | src/channel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/channel.h b/src/channel.h index b2080d4a..230ca915 100644 --- a/src/channel.h +++ b/src/channel.h @@ -24,7 +24,7 @@ #include <string> -#include "gui/widgets/channeltab.h" +class ChannelTab; class Channel { @@ -43,18 +43,18 @@ class Channel ~Channel(); /** - * Get the id associated witht his channel + * Get the id associated witht his channel. */ int getId() const { return mId; } /** - * Get this channel's name + * Get this channel's name. */ const std::string &getName() const { return mName; } /** - * Get the announcement message for this channel + * Get the announcement message for this channel. */ const std::string &getAnnouncement() const { return mAnnouncement; } |