diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-04-25 20:36:26 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-04-25 20:37:47 +0200 |
commit | 054b968c63b90a49025c29c7c14da913d2ac4021 (patch) | |
tree | 91bec75611394b47cac6e8b2fbcdd04da5bf9491 /include/svx | |
parent | 8657b48af4fcf524bf45d1c9af18bbb1bb87f1f4 (diff) |
quick fix for inheritance problems
Change-Id: I41c5c937d62d6ba0b3df2d4a0101319f272495a7
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/unoshape.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/svx/unoshape.hxx b/include/svx/unoshape.hxx index 937ecce8c32c..92106f9a1674 100644 --- a/include/svx/unoshape.hxx +++ b/include/svx/unoshape.hxx @@ -33,6 +33,7 @@ #include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/awt/Point.hpp> #include <com/sun/star/drawing/PolygonKind.hpp> +#include <com/sun/star/drawing/XShapes.hpp> #include <com/sun/star/drawing/XShapes2.hpp> #include <com/sun/star/drawing/XShapeGroup.hpp> #include <com/sun/star/container/XIndexAccess.hpp> @@ -385,7 +386,8 @@ public: ***********************************************************************/ class SvxShapeGroup : public SvxShape, public ::com::sun::star::drawing::XShapeGroup, - public ::com::sun::star::drawing::XShapes2 + public ::com::sun::star::drawing::XShapes2, + public ::com::sun::star::drawing::XShapes { private: rtl::Reference< SvxDrawPage> mxPage; |