summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Studio/Palettes/Timeline/Bindings/PasteKeyframesCommandHelper.h
diff options
context:
space:
mode:
authorMäättä Antti <antti.maatta@qt.io>2017-10-13 12:07:20 +0300
committerAntti Määttä <antti.maatta@qt.io>2017-10-24 13:23:19 +0000
commit09e9cdc430d9ae4b44bd157cc3d19943df66b8d4 (patch)
tree408c5a3029f1b85bef2917c5ff676e0d4f47099a /src/Authoring/Studio/Palettes/Timeline/Bindings/PasteKeyframesCommandHelper.h
parenta0ee8e091ee53ec1c52ab71fbf7334657182a336 (diff)
Replace UICDM namespace with qt3dsdm namespace
Task-number: QT3DS-18 Change-Id: I8a76c6be45eee7285a21cdf87ac28b88c4522102 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'src/Authoring/Studio/Palettes/Timeline/Bindings/PasteKeyframesCommandHelper.h')
-rw-r--r--src/Authoring/Studio/Palettes/Timeline/Bindings/PasteKeyframesCommandHelper.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Authoring/Studio/Palettes/Timeline/Bindings/PasteKeyframesCommandHelper.h b/src/Authoring/Studio/Palettes/Timeline/Bindings/PasteKeyframesCommandHelper.h
index 130f6d20..2d4d0993 100644
--- a/src/Authoring/Studio/Palettes/Timeline/Bindings/PasteKeyframesCommandHelper.h
+++ b/src/Authoring/Studio/Palettes/Timeline/Bindings/PasteKeyframesCommandHelper.h
@@ -53,8 +53,8 @@ public: // Construction
~CPasteKeyframeCommandHelper() {}
// inTime should be relative to the earliest keyframe time in this list
- void AddKeyframeData(UICDM::CUICDMPropertyHandle inProperty, float inKeyframeTime,
- UICDM::SGetOrSetKeyframeInfo *inInfos, size_t inInfoCount)
+ void AddKeyframeData(qt3dsdm::CUICDMPropertyHandle inProperty, float inKeyframeTime,
+ qt3dsdm::SGetOrSetKeyframeInfo *inInfos, size_t inInfoCount)
{
m_CopiedKeyframeList.push_back(CCmdDataModelInsertKeyframe::STimeKeyframeData(
inProperty, inKeyframeTime, inInfos, inInfoCount));
@@ -72,13 +72,13 @@ public: // Construction
//
// 2. The first pasted keyframe is at current view time and the rest are offset accordingly.
CCmdDataModelInsertKeyframe *GetCommand(CDoc *inDoc, long inTimeOffsetInMilliseconds,
- UICDM::CUICDMInstanceHandle inTargetInstance)
+ qt3dsdm::CUICDMInstanceHandle inTargetInstance)
{
- using namespace UICDM;
+ using namespace qt3dsdm;
CCmdDataModelInsertKeyframe *theInsertKeyframesCommand = nullptr;
TCopiedKeyframeList::iterator theIter = m_CopiedKeyframeList.begin();
- UICDM::IPropertySystem *thePropertySystem = inDoc->GetStudioSystem()->GetPropertySystem();
+ qt3dsdm::IPropertySystem *thePropertySystem = inDoc->GetStudioSystem()->GetPropertySystem();
CClientDataModelBridge *theBridge = inDoc->GetStudioSystem()->GetClientDataModelBridge();
for (; theIter != m_CopiedKeyframeList.end(); ++theIter) {