summaryrefslogtreecommitdiffstats
path: root/src/Runtime/Source/runtime/Qt3DSPresentation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Runtime/Source/runtime/Qt3DSPresentation.cpp')
-rw-r--r--src/Runtime/Source/runtime/Qt3DSPresentation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Runtime/Source/runtime/Qt3DSPresentation.cpp b/src/Runtime/Source/runtime/Qt3DSPresentation.cpp
index 68691a99..a4302ad5 100644
--- a/src/Runtime/Source/runtime/Qt3DSPresentation.cpp
+++ b/src/Runtime/Source/runtime/Qt3DSPresentation.cpp
@@ -125,7 +125,7 @@ void CPresentation::RegisterEventCallback(TElement *inElement, const TEventComma
m_EventCallbacks.RegisterCallback(inElement, inEventHash, inCallback, inContextData);
inElement->SetFlag(ELEMENTFLAG_REGISTEREDFOREVENTCALLBACK, true);
- if (qt3ds::runtime::IApplicationCore::isPickingEvent(inEventHash))
+ if (qt3ds::runtime::IApplication::isPickingEvent(inEventHash))
inElement->SetFlag(ELEMENTFLAG_PICKENABLED, true);
}
@@ -149,7 +149,7 @@ BOOL CPresentation::UnregisterEventCallback(TElement *inElement,
if (theLast)
inElement->SetFlag(ELEMENTFLAG_REGISTEREDFOREVENTCALLBACK, false);
- if (qt3ds::runtime::IApplicationCore::isPickingEvent(inEventHash))
+ if (qt3ds::runtime::IApplication::isPickingEvent(inEventHash))
inElement->SetFlag(ELEMENTFLAG_PICKENABLED, false);
return theResult;