summaryrefslogtreecommitdiff
path: root/include/canvas/base/canvasbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/canvas/base/canvasbase.hxx')
-rw-r--r--include/canvas/base/canvasbase.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/canvas/base/canvasbase.hxx b/include/canvas/base/canvasbase.hxx
index 5713831c3fea..cf30aabc8c6a 100644
--- a/include/canvas/base/canvasbase.hxx
+++ b/include/canvas/base/canvasbase.hxx
@@ -47,7 +47,7 @@ namespace canvas
<pre>
Example:
- typedef ::cppu::WeakComponentImplHelper4< css::rendering::XSpriteCanvas,
+ typedef ::cppu::WeakComponentImplHelper < css::rendering::XSpriteCanvas,
css::lang::XInitialization,
css::lang::XServiceInfo,
css::lang::XServiceName > CanvasBase_Base;
@@ -61,12 +61,12 @@ namespace canvas
</pre>
@tpl Base
- Base class to use, most probably one of the
- WeakComponentImplHelperN templates with the appropriate
+ Base class to use, most probably the
+ WeakComponentImplHelper template with the appropriate
interfaces. At least XCanvas should be among them (why else
would you use this template, then?). Base class must have an
Base( const Mutex& ) constructor (like the
- WeakComponentImplHelperN templates have). As the very least,
+ WeakComponentImplHelper template has). As the very least,
the base class must be derived from uno::XInterface, as some
error reporting mechanisms rely on that.