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/skilllistbox.h | |
parent | 3d7cb45edeb4f75bad321d54d84fe2d13b487db9 (diff) | |
download | mv-03c74387d37cefcc18e59db203d17d78cda40e8e.tar.gz mv-03c74387d37cefcc18e59db203d17d78cda40e8e.tar.bz2 mv-03c74387d37cefcc18e59db203d17d78cda40e8e.tar.xz mv-03c74387d37cefcc18e59db203d17d78cda40e8e.zip |
Move mousebutton into separate file.
Diffstat (limited to 'src/gui/widgets/skilllistbox.h')
-rw-r--r-- | src/gui/widgets/skilllistbox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/skilllistbox.h b/src/gui/widgets/skilllistbox.h index d2da4b150..c932fc95b 100644 --- a/src/gui/widgets/skilllistbox.h +++ b/src/gui/widgets/skilllistbox.h @@ -174,7 +174,7 @@ class SkillListBox final : public ListBox void mouseDragged(MouseEvent &event) { - if (event.getButton() == MouseEvent::LEFT) + if (event.getButton() == MouseButton::LEFT) { if (dragDrop.isEmpty()) { @@ -199,7 +199,7 @@ class SkillListBox final : public ListBox void mousePressed(MouseEvent &event) { ListBox::mousePressed(event); - if (event.getButton() == MouseEvent::LEFT) + if (event.getButton() == MouseButton::LEFT) { const SkillInfo *const skill = getSkillByEvent(event); if (!skill) |