summaryrefslogtreecommitdiffstats
path: root/src/runtime/Qt3DSComponentManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/Qt3DSComponentManager.cpp')
-rw-r--r--src/runtime/Qt3DSComponentManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/Qt3DSComponentManager.cpp b/src/runtime/Qt3DSComponentManager.cpp
index 1700222..fd77467 100644
--- a/src/runtime/Qt3DSComponentManager.cpp
+++ b/src/runtime/Qt3DSComponentManager.cpp
@@ -106,7 +106,7 @@ void CComponentManager::GotoSlideIndex(TElement *inComponent,
if (&m_Presentation != m_Presentation.GetApplication().GetPrimaryPresentation())
elementPath = m_Presentation.GetName() + QLatin1Char(':');
- elementPath.append(QString::fromUtf8(inComponent->m_Path.c_str()));
+ elementPath.append(QString::fromUtf8(inComponent->path().c_str()));
if (inSlideExit) {
SEventCommand theEvent = { inComponent, EVENT_ONSLIDEEXIT };
@@ -335,10 +335,10 @@ void CComponentManager::applyQueuedChanges(TElement *component)
}
void CComponentManager::queueChange(TElement *component, TElement *target, const char *attName,
- const char *value)
+ const char *value, TAttributeHash attrHash)
{
CQmlElementHelper::TypedAttributeAndValue attributeAndValue
- = CQmlElementHelper::getTypedAttributeAndValue(target, attName, value);
+ = CQmlElementHelper::getTypedAttributeAndValue(target, attName, value, attrHash);
if (attributeAndValue.attribute.m_Hash != 0) {
auto &targetQueue = m_queuedChanges[component];
auto &attQueue = targetQueue[target];