qmlfrontend/engine_instance.cpp
changeset 15217 b32c52c76977
parent 14854 aed75d439027
child 15891 d52f5d8e75e6
--- a/qmlfrontend/engine_instance.cpp	Fri Jul 05 23:40:03 2019 +0300
+++ b/qmlfrontend/engine_instance.cpp	Sat Jul 06 00:31:54 2019 +0200
@@ -87,16 +87,17 @@
   move_camera(m_instance, delta.x(), delta.y());
 }
 
-void EngineInstance::simpleEvent(SimpleEventType event_type) {
+void EngineInstance::simpleEvent(Engine::SimpleEventType event_type) {
   simple_event(m_instance, event_type);
 }
 
-void EngineInstance::longEvent(LongEventType event_type, LongEventState state) {
+void EngineInstance::longEvent(Engine::LongEventType event_type,
+                               Engine::LongEventState state) {
   long_event(m_instance, event_type, state);
 }
 
-void EngineInstance::positionedEvent(PositionedEventType event_type, qint32 x,
-                                     qint32 y) {
+void EngineInstance::positionedEvent(Engine::PositionedEventType event_type,
+                                     qint32 x, qint32 y) {
   positioned_event(m_instance, event_type, x, y);
 }