aboutsummaryrefslogtreecommitdiffstats
path: root/editors
diff options
context:
space:
mode:
authormaho <maho@FreeBSD.org>2014-02-05 09:41:25 +0800
committermaho <maho@FreeBSD.org>2014-02-05 09:41:25 +0800
commitb0f24b70a0ff13c3a8dd0e8d993f0c700446885c (patch)
treee7d81cc012d3c5a8a18fcfe9d7c67cdc48e71476 /editors
parente8103f675807bab6da1a733c3c1b8fdbd7faa2c2 (diff)
downloadfreebsd-ports-gnome-b0f24b70a0ff13c3a8dd0e8d993f0c700446885c.tar.gz
freebsd-ports-gnome-b0f24b70a0ff13c3a8dd0e8d993f0c700446885c.tar.zst
freebsd-ports-gnome-b0f24b70a0ff13c3a8dd0e8d993f0c700446885c.zip
remove unnecessary file
Diffstat (limited to 'editors')
-rw-r--r--editors/openoffice-devel/files/patch-configmgr19
1 files changed, 0 insertions, 19 deletions
diff --git a/editors/openoffice-devel/files/patch-configmgr b/editors/openoffice-devel/files/patch-configmgr
deleted file mode 100644
index 5e078d6a34a1..000000000000
--- a/editors/openoffice-devel/files/patch-configmgr
+++ /dev/null
@@ -1,19 +0,0 @@
---- configmgr/source/partial.hxx
-+++ configmgr/source/partial.hxx
-@@ -26,6 +26,7 @@
-
- #include "sal/config.h"
-
-+#include <boost/functional/hash.hpp>
- #include <boost/unordered_map.hpp> // using the boost container because it explicitly allows recursive types
- #include <set>
-
-@@ -50,7 +51,7 @@ public:
-
- private:
- struct Node {
-- typedef boost::unordered_map< rtl::OUString, Node > Children;
-+ typedef boost::unordered_map< rtl::OUString, Node, rtl::OUStringHash > Children;
-
- Node(): startInclude(false) {}
- void clear() { startInclude=false; children.clear(); }