summaryrefslogtreecommitdiff
path: root/src/gui/windows/chatwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-17 22:27:00 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 15:12:17 +0300
commitc94f403bd5c5810971c22bc2b93649e985ab6f68 (patch)
tree80af3cbfcedf72ad93dd9b8951cca072a99c43da /src/gui/windows/chatwindow.cpp
parent94273f426318994df784cf85c0c18a817f913a8d (diff)
downloadplus-c94f403bd5c5810971c22bc2b93649e985ab6f68.tar.gz
plus-c94f403bd5c5810971c22bc2b93649e985ab6f68.tar.bz2
plus-c94f403bd5c5810971c22bc2b93649e985ab6f68.tar.xz
plus-c94f403bd5c5810971c22bc2b93649e985ab6f68.zip
fix const usage in chatwindow.
Diffstat (limited to 'src/gui/windows/chatwindow.cpp')
-rw-r--r--src/gui/windows/chatwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp
index ca74e1765..de47813ef 100644
--- a/src/gui/windows/chatwindow.cpp
+++ b/src/gui/windows/chatwindow.cpp
@@ -676,7 +676,7 @@ void ChatWindow::doPresent() const
std::string response;
int playercount = 0;
- FOR_EACH (ActorSpritesConstIterator, it, actors)
+ FOR_EACH (ActorSpritesIterator, it, actors)
{
if ((*it)->getType() == ActorSprite::PLAYER)
{