diff options
author | Grzegorz Araminowicz <g.araminowicz@gmail.com> | 2017-08-09 15:29:05 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2017-08-23 01:11:18 +0200 |
commit | 7d42e4b4c4fc3813eeb0f72807ffd17f47a86a64 (patch) | |
tree | deec710179d621ce039884f41cfa8312b298974a /include/oox | |
parent | 4d60d96a22ef2f67db7c7e99981447bd81f776c4 (diff) |
SmartArt: basic support for layout constraints
Change-Id: Ie234bfd9760cdacb6a25c04d73a260e7e59ef7d6
Reviewed-on: https://gerrit.libreoffice.org/41273
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/drawingml/shape.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
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; |