summaryrefslogtreecommitdiff
path: root/src/gui/chatwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-18 23:23:11 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-18 23:23:11 +0300
commit7dc7b217107d18d531c569d2deab6ff1f62552d5 (patch)
tree30753ed34988d26d86733c9d76b97c7b6d24a998 /src/gui/chatwindow.cpp
parentdc6568962a32ddb6f231c629e7ad3373e9086b6c (diff)
downloadplus-7dc7b217107d18d531c569d2deab6ff1f62552d5.tar.gz
plus-7dc7b217107d18d531c569d2deab6ff1f62552d5.tar.bz2
plus-7dc7b217107d18d531c569d2deab6ff1f62552d5.tar.xz
plus-7dc7b217107d18d531c569d2deab6ff1f62552d5.zip
fix name conflicts.
Diffstat (limited to 'src/gui/chatwindow.cpp')
-rw-r--r--src/gui/chatwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp
index 91cf2417b..33a621cfe 100644
--- a/src/gui/chatwindow.cpp
+++ b/src/gui/chatwindow.cpp
@@ -1329,8 +1329,8 @@ std::string ChatWindow::autoComplete(const std::string &partName,
if (!words)
return "";
- Commands::const_iterator i = words->begin();
- const Commands::const_iterator i_end = words->end();
+ ChatCommands::const_iterator i = words->begin();
+ const ChatCommands::const_iterator i_end = words->end();
StringVect nameList;
while (i != i_end)