summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Client/Code/Core/Doc/IDocumentEditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Client/Code/Core/Doc/IDocumentEditor.h')
-rw-r--r--src/Authoring/Client/Code/Core/Doc/IDocumentEditor.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Authoring/Client/Code/Core/Doc/IDocumentEditor.h b/src/Authoring/Client/Code/Core/Doc/IDocumentEditor.h
index d5a65a5c..3e73cf7b 100644
--- a/src/Authoring/Client/Code/Core/Doc/IDocumentEditor.h
+++ b/src/Authoring/Client/Code/Core/Doc/IDocumentEditor.h
@@ -274,14 +274,16 @@ public:
virtual void RearrangeObjects(const qt3dsdm::TInstanceHandleList &inInstances,
TInstanceHandle inDest,
- DocumentEditorInsertType::Enum inInsertType) = 0;
+ DocumentEditorInsertType::Enum inInsertType,
+ bool checkUniqueName = true) = 0;
void RearrangeObject(TInstanceHandle inInstance, TInstanceHandle inDest,
- DocumentEditorInsertType::Enum inInsertType)
+ DocumentEditorInsertType::Enum inInsertType,
+ bool checkUniqueName = true)
{
qt3dsdm::TInstanceHandleList theInstances;
theInstances.push_back(inInstance);
- RearrangeObjects(theInstances, inDest, inInsertType);
+ RearrangeObjects(theInstances, inDest, inInsertType, checkUniqueName);
}
// Returns the new component.