summaryrefslogtreecommitdiff
path: root/src/gui/widgets/chattab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/chattab.h')
-rw-r--r--src/gui/widgets/chattab.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/gui/widgets/chattab.h b/src/gui/widgets/chattab.h
index 8fa0ab71..3a4133bb 100644
--- a/src/gui/widgets/chattab.h
+++ b/src/gui/widgets/chattab.h
@@ -48,14 +48,6 @@ enum
class ChatTab : public Tab
{
public:
- enum Type
- {
- UNKNOWN,
- INPUT,
- WHISPER,
- PARTY
- };
-
/**
* Constructor.
*/
@@ -119,11 +111,6 @@ class ChatTab : public Tab
const std::string &args)
{ return false; }
- /**
- * Returns type of the being.
- */
- virtual int getType() const;
-
protected:
friend class ChatWindow;
friend class WhisperWindow;
@@ -134,6 +121,8 @@ class ChatTab : public Tab
virtual void handleCommand(const std::string &msg);
+ virtual void getAutoCompleteList(std::vector<std::string>&) const {}
+
void addRow(std::string &line);
ScrollArea *mScrollArea;