summaryrefslogtreecommitdiff
path: root/extra/calligra
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-05-04 20:00:41 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-05-04 20:00:41 +0000
commitb2c353d874b85e06f355a9419852e2616613c7d0 (patch)
treef0773e0a930d308198ef5036d4f74e7f53015e6e /extra/calligra
parent0a24fb835cac4007388213ad0afb15257b035b14 (diff)
Fri May 4 20:00:31 UTC 2012
Diffstat (limited to 'extra/calligra')
-rw-r--r--extra/calligra/do-not-build-hancomword.patch11
-rw-r--r--extra/calligra/fix-docx-support.patch18
2 files changed, 0 insertions, 29 deletions
diff --git a/extra/calligra/do-not-build-hancomword.patch b/extra/calligra/do-not-build-hancomword.patch
deleted file mode 100644
index 0c010b706..000000000
--- a/extra/calligra/do-not-build-hancomword.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/filters/words/CMakeLists.txt
-+++ b/filters/words/CMakeLists.txt
-@@ -75,7 +75,6 @@ IF( NOT TINY )
- add_subdirectory( docbook )
- # add_subdirectory( html )
- add_subdirectory( kword1.3 )
-- add_subdirectory( hancomword )
- add_subdirectory( oowriter )
- add_subdirectory( palmdoc )
- add_subdirectory( wml )
-
diff --git a/extra/calligra/fix-docx-support.patch b/extra/calligra/fix-docx-support.patch
deleted file mode 100644
index 304e200e3..000000000
--- a/extra/calligra/fix-docx-support.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/libs/odf/KoXmlWriter.h
-+++ b/libs/odf/KoXmlWriter.h
-@@ -252,6 +252,14 @@ private:
- Tag(const char* t = 0, bool ind = true)
- : tagName(t), hasChildren(false), lastChildIsText(false),
- openingTagClosed(false), indentInside(ind) {}
-+ Tag(const Tag &original)
-+ {
-+ tagName = original.tagName;
-+ hasChildren = original.hasChildren;
-+ lastChildIsText = original.lastChildIsText;
-+ openingTagClosed = original.openingTagClosed;
-+ indentInside = original.indentInside;
-+ }
- const char* tagName;
- bool hasChildren : 1; ///< element or text children
- bool lastChildIsText : 1; ///< last child is a text node
-