summaryrefslogtreecommitdiff
path: root/editors/openoffice-1.0/files
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-06-10 05:26:20 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-06-10 05:26:20 +0000
commitb04150bf09db2981d1e96337e986773bdfe57e12 (patch)
tree4045f6e4388c62dfc942f99a2232a30e3e803d35 /editors/openoffice-1.0/files
parentupgrade to 3.3 (diff)
Remove patches with absurdly long filenames (>100 characters), after a
repo copy to files with shorter names.
Notes
Notes: svn path=/head/; revision=61026
Diffstat (limited to 'editors/openoffice-1.0/files')
-rw-r--r--editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MDatabaseMetaDataHelper.cxx71
-rw-r--r--editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MNSInclude.hxx22
-rw-r--r--editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MTypeConverter.cxx26
-rw-r--r--editors/openoffice-1.0/files/patch-sysui::unix::office::gnome::gnome-vfs-filetype-registration.cxx11
4 files changed, 0 insertions, 130 deletions
diff --git a/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MDatabaseMetaDataHelper.cxx b/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MDatabaseMetaDataHelper.cxx
deleted file mode 100644
index 4b92670204e7..000000000000
--- a/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MDatabaseMetaDataHelper.cxx
+++ /dev/null
@@ -1,71 +0,0 @@
---- ../connectivity/source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.cxx.orig Sat May 18 01:46:08 2002
-+++ ../connectivity/source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.cxx Sat May 18 01:56:23 2002
-@@ -2,9 +2,9 @@
- *
- * $RCSfile: MDatabaseMetaDataHelper.cxx,v $
- *
-- * $Revision: 1.5 $
-+ * $Revision: 1.6 $
- *
-- * last change: $Author: dkenny $ $Date: 2001/12/13 09:34:19 $
-+ * last change: $Author: fs $ $Date: 2002/05/17 12:08:41 $
- *
- * The Contents of this file are made available subject to the terms of
- * either of the following licenses
-@@ -213,11 +213,15 @@
-
- retCode = dirFactoryService->GetDirFactory(aFactory.getStr(), getter_AddRefs(dirFactory)) ;
- NS_ENSURE_SUCCESS (retCode, retCode) ;
-- OUString value = OStringToOUString(aFactory, RTL_TEXTENCODING_ASCII_US) ;
-- const PRUnichar *valueChars = value.getStr() ;
-- nsCOMPtr<nsISimpleEnumerator> subDirs ;
-+ nsCOMPtr <nsIAbDirectoryProperties> properties;
-+ properties = do_CreateInstance(NS_ABDIRECTORYPROPERTIES_CONTRACTID, &retCode);
-+ NS_ENSURE_SUCCESS(retCode, retCode) ;
-
-- retCode = dirFactory->CreateDirectory(1, &kPropertyName, &valueChars, getter_AddRefs(subDirs)) ;
-+ retCode = properties->SetURI(aFactory.getStr());
-+ NS_ENSURE_SUCCESS(retCode,retCode);
-+
-+ nsCOMPtr<nsISimpleEnumerator> subDirs ;
-+ retCode = dirFactory->CreateDirectory(properties, getter_AddRefs(subDirs));
- NS_ENSURE_SUCCESS(retCode, retCode) ;
- PRBool hasMore = PR_TRUE ;
- nsCOMPtr<nsISupportsArray> array ;
-@@ -635,12 +639,12 @@
- if ( NS_FAILED(rv) )
- return sal_False;
-
-- rv = url->SetSpec( sAbURI.getStr() );
-+ rv = url->SetSpec( nsDependentCString(sAbURI.getStr()) );
- if ( NS_FAILED(rv) )
- return sal_False;
-
-- nsXPIDLCString host;
-- rv = url->GetHost(getter_Copies (host));
-+ nsCAutoString host;
-+ rv = url->GetAsciiHost(host);
- if ( NS_FAILED(rv) )
- return sal_False;
-
-@@ -654,6 +658,11 @@
- if ( NS_FAILED(rv) )
- return sal_False;
-
-+ PRUint32 options;
-+ rv = url->GetOptions(&options);
-+ if ( NS_FAILED(rv) )
-+ return sal_False;
-+
- // Get the ldap connection
- nsCOMPtr<nsILDAPConnection> ldapConnection;
- ldapConnection = do_CreateInstance(NS_LDAPCONNECTION_CONTRACTID, &rv);
-@@ -671,7 +680,7 @@
-
- // Now lets initialize the LDAP connection properly. We'll kick
- // off the bind operation in the callback function, |OnLDAPInit()|.
-- rv = ldapConnection->Init(host, port, NS_ConvertASCIItoUCS2(dn).get(),
-+ rv = ldapConnection->Init(host.get(), port, options, nsnull,
- messageListener);
- if ( NS_FAILED(rv) )
- return sal_False;
diff --git a/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MNSInclude.hxx b/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MNSInclude.hxx
deleted file mode 100644
index 48ac201682de..000000000000
--- a/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MNSInclude.hxx
+++ /dev/null
@@ -1,22 +0,0 @@
---- ../connectivity/source/drivers/mozab/mozillasrc/MNSInclude.hxx.orig Sat May 18 01:58:35 2002
-+++ ../connectivity/source/drivers/mozab/mozillasrc/MNSInclude.hxx Sat May 18 02:00:42 2002
-@@ -2,9 +2,9 @@
- *
- * $RCSfile: MNSInclude.hxx,v $
- *
-- * $Revision: 1.3 $
-+ * $Revision: 1.4 $
- *
-- * last change: $Author: oj $ $Date: 2001/11/26 13:52:26 $
-+ * last change: $Author: fs $ $Date: 2002/05/17 12:08:41 $
- *
- * The Contents of this file are made available subject to the terms of
- * either of the following licenses
-@@ -83,7 +83,6 @@
- # define _DEBUG MOZ_TMP_UDEBUG
- #endif
-
--#include <xp_core.h>
- #include <nsCOMPtr.h>
- #include <nsISupportsArray.h>
- #include <nsStr.h>
diff --git a/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MTypeConverter.cxx b/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MTypeConverter.cxx
deleted file mode 100644
index 345d3700936e..000000000000
--- a/editors/openoffice-1.0/files/patch-connectivity::source::drivers::mozab::mozillasrc::MTypeConverter.cxx
+++ /dev/null
@@ -1,26 +0,0 @@
---- ../connectivity/source/drivers/mozab/mozillasrc/MTypeConverter.cxx.orig Mon Nov 26 14:52:26 2001
-+++ ../connectivity/source/drivers/mozab/mozillasrc/MTypeConverter.cxx Sat May 18 14:02:06 2002
-@@ -2,9 +2,9 @@
- *
- * $RCSfile: MTypeConverter.cxx,v $
- *
-- * $Revision: 1.3 $
-+ * $Revision: 1.4 $
- *
-- * last change: $Author: oj $ $Date: 2001/11/26 13:52:26 $
-+ * last change: $Author: fs $ $Date: 2002/05/17 12:08:41 $
- *
- * The Contents of this file are made available subject to the terms of
- * either of the following licenses
-@@ -136,9 +136,11 @@
- ::rtl::OString os(ous,ous.getLength(),RTL_TEXTENCODING_ASCII_US);
- return( ::std::string(os.getStr()));
- }
-+#if 0
- // -------------------------------------------------------------------------
- ::std::string MTypeConverter::nsStringToStlString(nsString const &nss)
- {
- return( ::std::string(nss.GetBuffer()));
- }
-+#endif
- // -------------------------------------------------------------------------
diff --git a/editors/openoffice-1.0/files/patch-sysui::unix::office::gnome::gnome-vfs-filetype-registration.cxx b/editors/openoffice-1.0/files/patch-sysui::unix::office::gnome::gnome-vfs-filetype-registration.cxx
deleted file mode 100644
index 6a5258b1c9e6..000000000000
--- a/editors/openoffice-1.0/files/patch-sysui::unix::office::gnome::gnome-vfs-filetype-registration.cxx
+++ /dev/null
@@ -1,11 +0,0 @@
---- ../sysui/unix/office/gnome/gnome-vfs-filetype-registration.cxx.orig Wed Apr 10 21:54:49 2002
-+++ ../sysui/unix/office/gnome/gnome-vfs-filetype-registration.cxx Wed May 1 22:40:02 2002
-@@ -62,7 +62,7 @@
- #include <stdlib.h>
- #include <stdio.h>
- #include <dlfcn.h>
--#if !defined(NETBSD)
-+#if !(defined NETBSD || defined FREEBSD)
- #include <alloca.h>
- #endif
- #include <string.h>