diff options
author | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2012-02-23 13:52:17 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2012-02-23 13:56:24 +0100 |
commit | e3e7623bf6cecf0e32912347a58e5a2c7297099d (patch) | |
tree | 4604956e18b9efaad547c76705a682ccb8ae2398 /comphelper | |
parent | 94698d89f675da9b4da1143fa150bbd76def6ccf (diff) |
fdo#45560: Fixed docx textbox borders style and width import
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/inc/comphelper/TypeGeneration.hxx | 1 | ||||
-rw-r--r-- | comphelper/source/property/TypeGeneration.cxx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/comphelper/inc/comphelper/TypeGeneration.hxx b/comphelper/inc/comphelper/TypeGeneration.hxx index c987b2adbe50..9492ac8ba6fb 100644 --- a/comphelper/inc/comphelper/TypeGeneration.hxx +++ b/comphelper/inc/comphelper/TypeGeneration.hxx @@ -71,6 +71,7 @@ namespace comphelper CPPUTYPE_SEQDEPTXTFLD, //getCppuType( (Sequence<Reference<XDependentTextField> >*)0 ) CPPUTYPE_TXTCNTANCHOR, //getCppuType( (text::TextContentAnchorType*)0 ) CPPUTYPE_WRAPTXTMODE, //getCppuType( (text::WrapTextMode*)0 ) + CPPUTYPE_LINESTYLE, //getCppuType( (drawing::LineStyle*)0 ) CPPUTYPE_COLORMODE, //getCppuType( (drawing::ColorMode*)0 ) CPPUTYPE_PAGESTYLELAY, //getCppuType( (style::PageStyleLayout*)0 ) CPPUTYPE_VERTALIGN, //getCppuType( (style::VerticalAlignment*)0 ) diff --git a/comphelper/source/property/TypeGeneration.cxx b/comphelper/source/property/TypeGeneration.cxx index 62c6d0578d91..93c255ca5d62 100644 --- a/comphelper/source/property/TypeGeneration.cxx +++ b/comphelper/source/property/TypeGeneration.cxx @@ -128,6 +128,7 @@ #include <com/sun/star/drawing/HomogenMatrix3.hpp> #include <com/sun/star/graphic/XGraphic.hpp> #include <com/sun/star/embed/XEmbeddedObject.hpp> +#include <com/sun/star/drawing/LineStyle.hpp> using ::rtl::OUString; using namespace ::com::sun::star; @@ -225,6 +226,7 @@ namespace comphelper case CPPUTYPE_REFXGRAPHIC: pType = &::getCppuType( (Reference< graphic::XGraphic >*)0); break; case CPPUTYPE_TABLEBORDERDISTANCES: pType = &::getCppuType( (table::TableBorderDistances*)0 ); break; case CPPUTPYE_REFEMBEDDEDOBJECT: pType = &embed::XEmbeddedObject::static_type(); break; + case CPPUTYPE_LINESTYLE: pType = &::getCppuType( (drawing::LineStyle*)0 ); break; default: OSL_FAIL( "Unknown CPPU type" ); } |