summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/printer/ppdparser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/generic/printer/ppdparser.cxx')
-rw-r--r--vcl/unx/generic/printer/ppdparser.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/vcl/unx/generic/printer/ppdparser.cxx b/vcl/unx/generic/printer/ppdparser.cxx
index c2ec2a0db43f..3037fbff1e49 100644
--- a/vcl/unx/generic/printer/ppdparser.cxx
+++ b/vcl/unx/generic/printer/ppdparser.cxx
@@ -20,8 +20,6 @@
#include <stdlib.h>
#include <stdio.h>
-#include <boost/noncopyable.hpp>
-
#include <comphelper/string.hxx>
#include "vcl/ppdparser.hxx"
#include "vcl/strhelper.hxx"
@@ -269,13 +267,17 @@ namespace
struct thePPDCache : public rtl::Static<PPDCache, thePPDCache> {};
}
-class PPDDecompressStream: private boost::noncopyable
+class PPDDecompressStream
{
+private:
+ PPDDecompressStream(const PPDDecompressStream&) SAL_DELETED_FUNCTION;
+ PPDDecompressStream& operator=(const PPDDecompressStream&) SAL_DELETED_FUNCTION;
+
SvFileStream* mpFileStream;
SvMemoryStream* mpMemStream;
OUString maFileName;
- public:
+public:
PPDDecompressStream( const OUString& rFile );
~PPDDecompressStream();