From 7d42e4b4c4fc3813eeb0f72807ffd17f47a86a64 Mon Sep 17 00:00:00 2001 From: Grzegorz Araminowicz Date: Wed, 9 Aug 2017 15:29:05 +0200 Subject: SmartArt: basic support for layout constraints Change-Id: Ie234bfd9760cdacb6a25c04d73a260e7e59ef7d6 Reviewed-on: https://gerrit.libreoffice.org/41273 Tested-by: Jenkins Reviewed-by: Thorsten Behrens --- include/oox/drawingml/shape.hxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/oox/drawingml/shape.hxx') diff --git a/include/oox/drawingml/shape.hxx b/include/oox/drawingml/shape.hxx index 9f16113b2ac5..55675c190986 100644 --- a/include/oox/drawingml/shape.hxx +++ b/include/oox/drawingml/shape.hxx @@ -143,6 +143,8 @@ public: void setName( const OUString& rName ) { msName = rName; } const OUString& getName( ) { return msName; } + void setInternalName( const OUString& rInternalName ) { msInternalName = rInternalName; } + const OUString& getInternalName() const { return msInternalName; } void setId( const OUString& rId ) { msId = rId; } const OUString& getId() { return msId; } void setHidden( bool bHidden ) { mbHidden = bHidden; } @@ -280,6 +282,7 @@ protected: OUString msServiceName; OUString msName; + OUString msInternalName; // used by diagram; not displayed in UI OUString msId; sal_Int32 mnSubType; // if this type is not zero, then the shape is a placeholder OptValue< sal_Int32 > moSubTypeIndex; -- cgit