summaryrefslogtreecommitdiff
path: root/x11/kdelibs3/files/patch-kdoctools::xml2man.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kdelibs3/files/patch-kdoctools::xml2man.cpp')
-rw-r--r--x11/kdelibs3/files/patch-kdoctools::xml2man.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/x11/kdelibs3/files/patch-kdoctools::xml2man.cpp b/x11/kdelibs3/files/patch-kdoctools::xml2man.cpp
deleted file mode 100644
index 891dc9bcb853..000000000000
--- a/x11/kdelibs3/files/patch-kdoctools::xml2man.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
---- kdoctools/xml2man.cpp Sat Jul 28 23:55:05 2001
-+++ kdoctools/xml2man.cpp.new Wed Aug 29 18:10:54 2001
-@@ -63,9 +63,7 @@
- QString pat = args->arg( 0 );
- QFile xmlFile( pat );
- xmlFile.open(IO_ReadOnly);
-- QCString contents;
-- contents.assign(xmlFile.readAll());
-- contents.truncate(xmlFile.size());
-+ QCString contents(xmlFile.readAll(), xmlFile.size() + 1);
- xmlFile.close();
-
- contents.replace( QRegExp( "<!--[^-]*-->" ), "" );