diff options
author | Muthu Subramanian <sumuthu@collabora.com> | 2014-03-06 21:21:43 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@collabora.com> | 2014-03-06 21:24:19 +0530 |
commit | f1d1c9a6529d575ba3f65872e5ae9e7ac381c6b7 (patch) | |
tree | abb2a2b7130c30c1dba8b600ac8065eb21b6c929 /include/oox | |
parent | ad737e7ff4bf12d8b66ceb2001aebf54ff5badba (diff) |
n#821567: Fix TextFrame background import for sw.
TextFrame in sw unfortunately doesn't seem to
support nametable!
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/helper/modelobjecthelper.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/oox/helper/modelobjecthelper.hxx b/include/oox/helper/modelobjecthelper.hxx index e57e0149a3e1..2ced97341f25 100644 --- a/include/oox/helper/modelobjecthelper.hxx +++ b/include/oox/helper/modelobjecthelper.hxx @@ -48,6 +48,8 @@ public: /** Returns true, if the object with the passed name exists in the container. */ bool hasObject( const OUString& rObjName ) const; + ::com::sun::star::uno::Any getObject( const OUString& rObjName ) const; + /** Inserts the passed object into the container, returns its final name. */ OUString insertObject( const OUString& rObjName, @@ -104,6 +106,8 @@ public: an internal constant name with a new unused index appended. */ OUString insertFillBitmapUrl( const OUString& rGraphicUrl ); + OUString getFillBitmapUrl( const OUString& rGraphicName ); + private: ObjectContainer maMarkerContainer; ///< Contains all named line markers (line end polygons). ObjectContainer maDashContainer; ///< Contains all named line dsahes. |