summaryrefslogtreecommitdiff
path: root/external/libwps/0001-avoid-name-clash-with-MultiplanParser-from-libmwaw.patch.1
blob: 46983dd9eed2d70375a67557057521da58c4f33a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
From 9181ad021cf1c200bc80edb9f5a6df5b780be046 Mon Sep 17 00:00:00 2001
From: David Tardon <dtardon@redhat.com>
Date: Thu, 26 Apr 2018 14:24:55 +0200
Subject: [PATCH] avoid name clash with MultiplanParser from libmwaw

---
 src/lib/Multiplan.cpp | 5 ++++-
 src/lib/Multiplan.h   | 5 +++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/lib/Multiplan.cpp b/src/lib/Multiplan.cpp
index 278f699..26ceca3 100644
--- a/src/lib/Multiplan.cpp
+++ b/src/lib/Multiplan.cpp
@@ -44,7 +44,8 @@
 
 #include "Multiplan.h"
 
-using namespace libwps;
+namespace libwps
+{
 
 //! Internal: namespace to define internal class of MultiplanParser
 namespace MultiplanParserInternal
@@ -2912,4 +2913,6 @@ RVNGInputStreamPtr MultiplanParser::decodeStream(RVNGInputStreamPtr input)
 	return res;
 }
 
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
diff --git a/src/lib/Multiplan.h b/src/lib/Multiplan.h
index 87e0565..83c83f2 100644
--- a/src/lib/Multiplan.h
+++ b/src/lib/Multiplan.h
@@ -34,6 +34,9 @@
 
 #include "WKSParser.h"
 
+namespace libwps
+{
+
 namespace MultiplanParserInternal
 {
 struct State;
@@ -127,5 +130,7 @@ protected:
 	std::shared_ptr<MultiplanParserInternal::State> m_state;
 };
 
+}
+
 #endif /* WPS4_H */
 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
-- 
2.14.3