summaryrefslogtreecommitdiff
path: root/svgio
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-14 21:38:46 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-14 21:38:46 +0200
commit6a682c41e5013b227a254a3ba7a2954a4fbb793a (patch)
tree216d5c40202cb15e62ee3345cf1f504385aa049f /svgio
parent6880e9c97377940a4b967a68f4f936486b58face (diff)
Clean up function declarations
Change-Id: Id628629bdab2aa9446d449bc091a7bb82dab54eb
Diffstat (limited to 'svgio')
-rw-r--r--svgio/source/svguno/xsvgparser.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/svgio/source/svguno/xsvgparser.cxx b/svgio/source/svguno/xsvgparser.cxx
index 4f77167b8d29..2032ce8f2ef6 100644
--- a/svgio/source/svguno/xsvgparser.cxx
+++ b/svgio/source/svguno/xsvgparser.cxx
@@ -19,6 +19,7 @@
#include "sal/config.h"
+#include <boost/noncopyable.hpp>
#include <com/sun/star/graphic/XSvgParser.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
@@ -38,12 +39,9 @@ namespace svgio
{
namespace svgreader
{
- class XSvgParser : public ::cppu::WeakAggImplHelper2< graphic::XSvgParser, lang::XServiceInfo >
+ class XSvgParser : public ::cppu::WeakAggImplHelper2< graphic::XSvgParser, lang::XServiceInfo >, private boost::noncopyable
{
private:
- XSvgParser(const XSvgParser&);
- XSvgParser& operator=(const XSvgParser&);
-
uno::Reference< uno::XComponentContext > context_;
protected: