1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

Remove patches forgotten in the previous commit.

This commit is contained in:
Adam Weinberger 2003-09-25 03:24:23 +00:00
parent cb0c6f8881
commit 82aaeb6930
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=89288
2 changed files with 0 additions and 51 deletions

View File

@ -1,40 +0,0 @@
--- mozilla/TOCProtocolHandler.cpp.orig Sat Jun 14 11:42:57 2003
+++ mozilla/TOCProtocolHandler.cpp Mon Jul 21 11:30:04 2003
@@ -83,8 +83,8 @@
oStream->Write (str.c_str(), str.size(), &bytesWriten);
static void ParseEnvPath(const nsCString &path, list<string> &dirs);
-static int gHelpSelect (const struct dirent *dirEntry);
-static int gnomeHelpSelect (const struct dirent *dirEntry);
+static int gHelpSelect (struct dirent *dirEntry);
+static int gnomeHelpSelect (struct dirent *dirEntry);
static void RenderContentType (nsIOutputStream *oStream, PRUint32 &bytesWriten);
/* Implementation file */
@@ -362,7 +362,7 @@
}
NS_METHOD GTOCProtocolHandler::CreateHelpPage (const char *type,
- int (*select)(const struct dirent *))
+ int (*select)(struct dirent *))
{
nsresult rv;
@@ -445,7 +445,7 @@
}
}
-int gHelpSelect (const struct dirent *dirEntry)
+int gHelpSelect (struct dirent *dirEntry)
{
#ifdef NOT_PORTED
char *helpPath = gnome_help_file_find_file (
@@ -461,7 +461,7 @@
#endif
}
-int gnomeHelpSelect (const struct dirent *dirEntry)
+int gnomeHelpSelect (struct dirent *dirEntry)
{
#ifdef NOT_PORTED
nsCString fileName = dirEntry->d_name;

View File

@ -1,11 +0,0 @@
--- mozilla/TOCProtocolHandler.h.orig Wed Nov 20 15:25:05 2002
+++ mozilla/TOCProtocolHandler.h Wed Nov 20 15:25:10 2002
@@ -55,7 +55,7 @@
NS_METHOD CreateInfoPage (void);
NS_METHOD CreateManPage (void);
NS_METHOD CreateHelpPage (const char *type,
- int (*select)(const struct dirent *));
+ int (*select)(struct dirent *));
nsCOMPtr<nsIURI> mURI;
nsCOMPtr<nsIChannel> mChannel;
nsCOMPtr<nsIStorageStream> mStream;