summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-2.0-devel/files
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2006-08-19 10:56:17 +0000
committerMaho Nakata <maho@FreeBSD.org>2006-08-19 10:56:17 +0000
commit308de9c9bc0becdfbf567a0287478a14cdb39fb4 (patch)
tree5d26a31156af3354b2e57219d715e5cb83b0fc2f /editors/openoffice.org-2.0-devel/files
parent- Update to 7.7.2 (diff)
update to SRC680_m182
Notes
Notes: svn path=/head/; revision=170980
Diffstat (limited to 'editors/openoffice.org-2.0-devel/files')
-rw-r--r--editors/openoffice.org-2.0-devel/files/patch-i6789124
-rw-r--r--editors/openoffice.org-2.0-devel/files/patch-i6811025
2 files changed, 0 insertions, 49 deletions
diff --git a/editors/openoffice.org-2.0-devel/files/patch-i67891 b/editors/openoffice.org-2.0-devel/files/patch-i67891
deleted file mode 100644
index 28e98528fb9e..000000000000
--- a/editors/openoffice.org-2.0-devel/files/patch-i67891
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: cli_ure/version/makefile.mk
-===================================================================
-RCS file: /cvs/udk/cli_ure/version/makefile.mk,v
-retrieving revision 1.3
-diff -u -r1.3 makefile.mk
---- cli_ure/version/makefile.mk 25 Jul 2006 07:55:26 -0000 1.3
-+++ cli_ure/version/makefile.mk 29 Jul 2006 12:02:00 -0000
-@@ -52,8 +52,6 @@
- ECHOQUOTE=
- .ENDIF
-
--.IF "$(BUILD_FOR_CLI)" != ""
--
- ALLTAR : \
- $(BIN)$/cliureversion.mk
-
-@@ -69,7 +67,3 @@
- #INCVERSION .PHONY: version.txt incversions.txt
- # +$(PERL) $(PRJ)$/source$/scripts$/increment_version.pl \
- # $< $(BIN)$/cliureversion.mk $(SOLARBINDIR)$/unotype_statistics.txt
--
--.END
--
--
diff --git a/editors/openoffice.org-2.0-devel/files/patch-i68110 b/editors/openoffice.org-2.0-devel/files/patch-i68110
deleted file mode 100644
index f1322eec397f..000000000000
--- a/editors/openoffice.org-2.0-devel/files/patch-i68110
+++ /dev/null
@@ -1,25 +0,0 @@
-Index: tools/bootstrp/sstring.cxx
-===================================================================
-RCS file: /cvs/util/tools/bootstrp/sstring.cxx,v
-retrieving revision 1.6
-diff -u -r1.6 sstring.cxx
---- tools/bootstrp/sstring.cxx 2 Aug 2006 12:10:04 -0000 1.6
-+++ tools/bootstrp/sstring.cxx 10 Aug 2006 08:50:06 -0000
-@@ -173,7 +173,7 @@
-
- SByteStringList& SByteStringList::operator<< ( SvStream& rStream )
- {
-- ULONG nListCount;
-+ sal_uInt32 nListCount;
- rStream >> nListCount;
- for ( USHORT i = 0; i < nListCount; i++ ) {
- ByteString* pByteString = new ByteString();
-@@ -185,7 +185,7 @@
-
- SByteStringList& SByteStringList::operator>> ( SvStream& rStream )
- {
-- ULONG nListCount = Count();
-+ sal_uInt32 nListCount = Count();
- rStream << nListCount;
- ByteString* pByteString = First();
- while (pByteString) {