diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-06-20 20:56:26 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-06-21 10:43:51 +0200 |
commit | 76a90e69d15104f76193647050948528caf6ff8d (patch) | |
tree | 577cf0865855c7f5e723ac0a6a2db1cd91046638 /include | |
parent | 422ce23ea6cb7ddad6db97d752ffe5fdf6ce0d3a (diff) |
fdo#43641 oox: fix position/size of LineShapes inside lockedCanvas
Change-Id: Idf14d40f174ca87543a829ccfe22ed5cbb8e3cbc
Diffstat (limited to 'include')
-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 f8a58ec5340b..94c8342ef465 100644 --- a/include/oox/drawingml/shape.hxx +++ b/include/oox/drawingml/shape.hxx @@ -172,6 +172,8 @@ public: const ::std::vector<OUString>& getExtDrawings() { return maExtDrawings; } void addExtDrawingRelId( const OUString &rRelId ) { maExtDrawings.push_back( rRelId ); } + void setLockedCanvas(bool bLockedCanvas); + bool getLockedCanvas(); protected: @@ -262,6 +264,7 @@ private: sal_Bool mbHiddenMasterShape; // master shapes can be hidden in layout slides // we need separate flag because we don't want // to propagate it when applying reference shape + bool mbLockedCanvas; ///< Is this shape part of a locked canvas? }; // ============================================================================ |