summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Studio/Palettes/Timeline/Bindings/LayerTimelineItemBinding.h
diff options
context:
space:
mode:
authorMäättä Antti <antti.maatta@qt.io>2017-10-18 16:36:51 +0300
committerAntti Määttä <antti.maatta@qt.io>2017-10-24 13:23:43 +0000
commit15d01aed8147a0067be0074257fcbdb960ef5301 (patch)
treedcf907bfe02d62627f708b2c4a1e0e742f74e09b /src/Authoring/Studio/Palettes/Timeline/Bindings/LayerTimelineItemBinding.h
parent06f05f562f9e5c1c3b37bf83d077c42e3bebf89a (diff)
Rename instance and property handles to Qt3DS
Task-number: QT3DS-18 Change-Id: Id93959e382dd9285590fdf979c71a459e7657e01 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'src/Authoring/Studio/Palettes/Timeline/Bindings/LayerTimelineItemBinding.h')
-rw-r--r--src/Authoring/Studio/Palettes/Timeline/Bindings/LayerTimelineItemBinding.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Authoring/Studio/Palettes/Timeline/Bindings/LayerTimelineItemBinding.h b/src/Authoring/Studio/Palettes/Timeline/Bindings/LayerTimelineItemBinding.h
index 4770df97..9748dc4a 100644
--- a/src/Authoring/Studio/Palettes/Timeline/Bindings/LayerTimelineItemBinding.h
+++ b/src/Authoring/Studio/Palettes/Timeline/Bindings/LayerTimelineItemBinding.h
@@ -48,7 +48,7 @@ class CStudioSystem;
class CLayerTimelineItemBinding : public CUICDMTimelineItemBinding
{
public: // Types
- typedef std::tuple<qt3dsdm::TCharStr, qt3dsdm::TCharStr, qt3dsdm::CUICDMPropertyHandle>
+ typedef std::tuple<qt3dsdm::TCharStr, qt3dsdm::TCharStr, qt3dsdm::Qt3DSDMPropertyHandle>
TNameFormalNamePair;
typedef std::vector<TNameFormalNamePair> TNameFormalNamePairList;
@@ -57,20 +57,20 @@ protected: // Members
public: // Construction
CLayerTimelineItemBinding(CTimelineTranslationManager *inMgr,
- qt3dsdm::CUICDMInstanceHandle inDataHandle);
+ qt3dsdm::Qt3DSDMInstanceHandle inDataHandle);
virtual ~CLayerTimelineItemBinding();
public: // CUICDMTimelineItemBinding
EStudioObjectType GetObjectType() const override;
// Hierarchy
ITimelineItemBinding *GetChild(long inIndex) override;
- void OnAddChild(qt3dsdm::CUICDMInstanceHandle inInstance) override;
+ void OnAddChild(qt3dsdm::Qt3DSDMInstanceHandle inInstance) override;
// Event callback
- void OnPropertyChanged(qt3dsdm::CUICDMPropertyHandle inPropertyHandle) override;
+ void OnPropertyChanged(qt3dsdm::Qt3DSDMPropertyHandle inPropertyHandle) override;
protected:
- qt3dsdm::CUICDMInstanceHandle GetImage(qt3dsdm::CUICDMPropertyHandle inPropertyHandle);
- ITimelineItemBinding *GetOrCreateImageBinding(qt3dsdm::CUICDMPropertyHandle inPropertyHandle,
+ qt3dsdm::Qt3DSDMInstanceHandle GetImage(qt3dsdm::Qt3DSDMPropertyHandle inPropertyHandle);
+ ITimelineItemBinding *GetOrCreateImageBinding(qt3dsdm::Qt3DSDMPropertyHandle inPropertyHandle,
const wchar_t *inName);
};