diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-20 13:41:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-22 00:08:12 +0300 |
commit | 5a8b8f4ad56914e1c75acd29807897ba1433c96f (patch) | |
tree | 4e29e8fee3e794ba4b69e383d3f0e12e6e8d62e0 /src/gui | |
parent | 54ee7d240a8ab3a328d0f3f06f3b9627d4727c90 (diff) | |
download | plus-5a8b8f4ad56914e1c75acd29807897ba1433c96f.tar.gz plus-5a8b8f4ad56914e1c75acd29807897ba1433c96f.tar.bz2 plus-5a8b8f4ad56914e1c75acd29807897ba1433c96f.tar.xz plus-5a8b8f4ad56914e1c75acd29807897ba1433c96f.zip |
add netcode support for channels (for now evol only).
for now any channel ignored and used as general tab.
also change netcode version to 8.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/widgets/chattab.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/widgets/chattab.h b/src/gui/widgets/chattab.h index 0ac55811d..2f84a723c 100644 --- a/src/gui/widgets/chattab.h +++ b/src/gui/widgets/chattab.h @@ -32,8 +32,10 @@ class ScrollArea; -const std::string GENERAL_CHANNEL = "\000\000\000"; -const std::string TRADE_CHANNEL = "\000\000\001"; +//const std::string GENERAL_CHANNEL = "\000\000\000"; +//const std::string TRADE_CHANNEL = "\000\000\001"; +const std::string GENERAL_CHANNEL = ""; +const std::string TRADE_CHANNEL = ""; /** * A tab for the chat window. This is special to ease chat handling. |