diff options
author | Christian Lippka <cl@openoffice.org> | 2000-11-02 15:06:24 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2000-11-02 15:06:24 +0000 |
commit | ca99f8b4cc90bb492ee5c32d23957631855f5b28 (patch) | |
tree | ddcf83a19f3f5650014f321a4e46d690c9ded42e /svx/inc | |
parent | fc037d38c98071e94760e348ab9f4723906b72b5 (diff) |
added missing XUnoTunnel interface for getImplementation
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/unonrule.hxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/svx/inc/unonrule.hxx b/svx/inc/unonrule.hxx index f424fd0007df..e42e59c453fd 100644 --- a/svx/inc/unonrule.hxx +++ b/svx/inc/unonrule.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unonrule.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: cl $ $Date: 2000-09-28 12:34:18 $ + * last change: $Author: cl $ $Date: 2000-11-02 16:06:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -139,6 +139,9 @@ #ifndef _COM_SUN_STAR_CONTAINER_XNAMED_HPP_ #include <com/sun/star/container/XNamed.hpp> #endif +#ifndef _COM_SUN_STAR_LANG_XUNOTUNNEL_HPP_ +#include <com/sun/star/lang/XUnoTunnel.hpp> +#endif #include <unotools/servicehelper.hxx> @@ -146,11 +149,11 @@ #include <numitem.hxx> #endif -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase3.hxx> class SdrModel; -class SvxUnoNumberingRules : public ::cppu::WeakAggImplHelper2< ::com::sun::star::container::XIndexReplace, ::com::sun::star::container::XNamed > +class SvxUnoNumberingRules : public ::cppu::WeakAggImplHelper3< ::com::sun::star::container::XIndexReplace, ::com::sun::star::container::XNamed, ::com::sun::star::lang::XUnoTunnel > { private: SvxNumBulletItem* mpBulletItem; |