diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-04 01:58:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-04 01:58:51 +0300 |
commit | f2013e1e567d2a91be8b696cdd1db3edd5906f99 (patch) | |
tree | 20d0288ea17f2da33b4887f0e8734063ca7134a5 /src/gui/widgets | |
parent | f74e2b6c8b019bceb02e25aa53e988918fd5d278 (diff) | |
download | plus-f2013e1e567d2a91be8b696cdd1db3edd5906f99.tar.gz plus-f2013e1e567d2a91be8b696cdd1db3edd5906f99.tar.bz2 plus-f2013e1e567d2a91be8b696cdd1db3edd5906f99.tar.xz plus-f2013e1e567d2a91be8b696cdd1db3edd5906f99.zip |
Add some missing tmwa defines. Fix compilation error without tmwa support.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/avatarlistbox.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/widgets/avatarlistbox.cpp b/src/gui/widgets/avatarlistbox.cpp index 9919a10d3..e4c5d3e93 100644 --- a/src/gui/widgets/avatarlistbox.cpp +++ b/src/gui/widgets/avatarlistbox.cpp @@ -613,6 +613,7 @@ void AvatarListBox::mousePressed(MouseEvent &event) const MouseButtonT eventButton = event.getButton(); if (eventButton == MouseButton::LEFT) { +#ifdef TMWA_SUPPORT if (type == MapItemType::EMPTY) { const Being *const being = actorManager->findBeingByName( @@ -621,6 +622,7 @@ void AvatarListBox::mousePressed(MouseEvent &event) actorManager->heal(being); } else +#endif // TMWA_SUPPORT { localPlayer->navigateTo(ava->getX(), ava->getY()); } |