diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-08 12:36:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-08 12:36:22 +0300 |
commit | d0ccffd7db79f5dbff6f2cb4f8b77a8bb3435e57 (patch) | |
tree | c1fc8dd2d9ddbc04f8893139276b8a35346ae2d1 /src/gui/chatwindow.cpp | |
parent | e2dfb4d9242f74e566416be7f3ad6ac529fac520 (diff) | |
download | plus-d0ccffd7db79f5dbff6f2cb4f8b77a8bb3435e57.tar.gz plus-d0ccffd7db79f5dbff6f2cb4f8b77a8bb3435e57.tar.bz2 plus-d0ccffd7db79f5dbff6f2cb4f8b77a8bb3435e57.tar.xz plus-d0ccffd7db79f5dbff6f2cb4f8b77a8bb3435e57.zip |
add autocomplete support for online list.
Diffstat (limited to 'src/gui/chatwindow.cpp')
-rw-r--r-- | src/gui/chatwindow.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index b33a14a0e..04c2a2d9a 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -43,6 +43,7 @@ #include "gui/sdlfont.h" #include "gui/sdlinput.h" #include "gui/viewport.h" +#include "gui/whoisonline.h" #include "gui/widgets/battletab.h" #include "gui/widgets/dropdown.h" @@ -1262,6 +1263,11 @@ void ChatWindow::autoComplete() } if (newName.empty()) newName = autoComplete(name, &mCustomWords); + if (newName.empty()) + { + whoIsOnline->getPlayerNames(nameList); + newName = autoComplete(nameList, name); + } if (!newName.empty()) { |