summaryrefslogtreecommitdiff
path: root/comphelper/source/property
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2010-11-15 12:56:35 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2010-11-15 12:56:35 +0100
commit2b173b9eb115840aabb5742d4585b8ea1b84e25f (patch)
tree879fe12fbd5bdedd88636fddff574a0e466e8a19 /comphelper/source/property
parent3a78a2dec20b22d686755f464b9e9c907a2c6d26 (diff)
undoapi: implement an EmbeddedObject property for (OLE) shapes, to be consistent with the shape implementations of the other applications, and allow access to the XEmbeddedObject
Diffstat (limited to 'comphelper/source/property')
-rw-r--r--comphelper/source/property/TypeGeneration.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/comphelper/source/property/TypeGeneration.cxx b/comphelper/source/property/TypeGeneration.cxx
index bf880330ce75..649e50711d28 100644
--- a/comphelper/source/property/TypeGeneration.cxx
+++ b/comphelper/source/property/TypeGeneration.cxx
@@ -132,7 +132,8 @@
// --> OD 2004-08-09 #i28749#
#include <com/sun/star/drawing/HomogenMatrix3.hpp>
// <--
-#include <com/sun/star/graphic/XGraphicProvider.hpp>
+#include <com/sun/star/graphic/XGraphic.hpp>
+#include <com/sun/star/embed/XEmbeddedObject.hpp>
using ::rtl::OUString;
using namespace ::com::sun::star;
@@ -230,6 +231,7 @@ namespace comphelper
case CPPUTYPE_SEQNAMEDVALUE: pType = &::getCppuType( (Sequence<beans::NamedValue>*)0 ); break;
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;
default:
OSL_ASSERT( "Unknown CPPU type" );
}