From 07aaa78ea90abf7bc79439906b88584290da63fe Mon Sep 17 00:00:00 2001 From: David Capello Date: Sat, 14 Jun 2014 00:49:06 -0300 Subject: [PATCH] Minor fix in she::Event::type() return type --- src/she/event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/she/event.h b/src/she/event.h index 07f355369..fae13a11b 100644 --- a/src/she/event.h +++ b/src/she/event.h @@ -40,7 +40,7 @@ namespace she { Event() : m_type(None) { } - int type() const { return m_type; } + Type type() const { return m_type; } const Files& files() const { return m_files; } gfx::Point position() const { return m_position; } gfx::Point wheelDelta() const { return m_wheelDelta; }