From 151caf049c95368347a6243e85e04a50c87d0e5e Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Mon, 12 Oct 2015 13:22:12 +0200 Subject: Fix missing 'direction' type changes (int to enum). --- plugingui/button.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugingui/button.cc') diff --git a/plugingui/button.cc b/plugingui/button.cc index dea376c..be5f82e 100644 --- a/plugingui/button.cc +++ b/plugingui/button.cc @@ -83,7 +83,7 @@ Button::~Button() void Button::buttonEvent(ButtonEvent *e) { - if(e->direction == 1) + if(e->direction == ButtonEvent::Down) { draw_state = down; button_state = down; @@ -91,7 +91,7 @@ void Button::buttonEvent(ButtonEvent *e) repaintEvent(nullptr); } - if(e->direction == -1) + if(e->direction == ButtonEvent::Up) { draw_state = up; button_state = up; -- cgit v1.2.3