diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-18 16:27:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-18 16:27:04 +0300 |
commit | 03c74387d37cefcc18e59db203d17d78cda40e8e (patch) | |
tree | 74e7291b97b67bb75984f5f5819944f058a9ace7 /src/gui/widgets/avatarlistbox.cpp | |
parent | 3d7cb45edeb4f75bad321d54d84fe2d13b487db9 (diff) | |
download | plus-03c74387d37cefcc18e59db203d17d78cda40e8e.tar.gz plus-03c74387d37cefcc18e59db203d17d78cda40e8e.tar.bz2 plus-03c74387d37cefcc18e59db203d17d78cda40e8e.tar.xz plus-03c74387d37cefcc18e59db203d17d78cda40e8e.zip |
Move mousebutton into separate file.
Diffstat (limited to 'src/gui/widgets/avatarlistbox.cpp')
-rw-r--r-- | src/gui/widgets/avatarlistbox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/avatarlistbox.cpp b/src/gui/widgets/avatarlistbox.cpp index e098cda34..4bbc85a94 100644 --- a/src/gui/widgets/avatarlistbox.cpp +++ b/src/gui/widgets/avatarlistbox.cpp @@ -344,7 +344,7 @@ void AvatarListBox::mousePressed(MouseEvent &event) event.consume(); const unsigned int eventButton = event.getButton(); - if (eventButton == MouseEvent::LEFT) + if (eventButton == MouseButton::LEFT) { if (ava->getType() == AVATAR_PLAYER) { @@ -358,7 +358,7 @@ void AvatarListBox::mousePressed(MouseEvent &event) player_node->navigateTo(ava->getX(), ava->getY()); } } - else if (eventButton == MouseEvent::RIGHT) + else if (eventButton == MouseButton::RIGHT) { switch (ava->getType()) { @@ -417,7 +417,7 @@ void AvatarListBox::mousePressed(MouseEvent &event) } } } - else if (eventButton == MouseEvent::MIDDLE) + else if (eventButton == MouseButton::MIDDLE) { if (ava->getType() == AVATAR_PLAYER && chatWindow) { |