diff options
author | Frank Schoenheit [fs] <frank.schoenheit@oracle.com> | 2010-08-27 17:06:19 +0200 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@oracle.com> | 2010-08-27 17:06:19 +0200 |
commit | d8c1d48900e68ab5290e28dbc26b3628f274188e (patch) | |
tree | 7c1c31fd14b3bf8b4cbdd05311706c82fdd0c2d7 /comphelper | |
parent | d1f21e02385cc8c6de03ec4cf51d1354d97d120d (diff) |
dba34a: #i113551# fixed documentation (thanks to simonaw)
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/inc/comphelper/servicedecl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/inc/comphelper/servicedecl.hxx b/comphelper/inc/comphelper/servicedecl.hxx index 5d11d41831f5..ab45261885c5 100644 --- a/comphelper/inc/comphelper/servicedecl.hxx +++ b/comphelper/inc/comphelper/servicedecl.hxx @@ -67,7 +67,7 @@ typedef ::boost::function3< The declaration can be done in various ways, the (simplest) form is <pre> - class MyClass : cppu::WeakImplHelper2<XInterface1, XInterface2> { + class MyClass : public cppu::WeakImplHelper2<XInterface1, XInterface2> { public: MyClass( uno::Reference<uno::XComponentContext> const& xContext ) [...] @@ -85,7 +85,7 @@ typedef ::boost::function3< context: <pre> - class MyClass : cppu::WeakImplHelper2<XInterface1, XInterface2> { + class MyClass : public cppu::WeakImplHelper2<XInterface1, XInterface2> { public: MyClass( uno::Sequence<uno::Any> const& args, uno::Reference<uno:XComponentContext> const& xContext ) |