summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-04-12 20:44:06 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-04-12 20:44:06 +0000
commitc1600d449b6167ca4aeca417b1f9c43c0311dca9 (patch)
tree96445219c96469f9776ac2e7859b41f10fe3be12 /www
parentUpdate to 0.71. (diff)
Fix build on -CURRENT.
Reported by: Pav Lucistnik <pav@oook.cz> Obtained from: Galeon CVS
Notes
Notes: svn path=/head/; revision=78820
Diffstat (limited to 'www')
-rw-r--r--www/galeon/files/patch-src_mozilla_ContentHandler.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/www/galeon/files/patch-src_mozilla_ContentHandler.cpp b/www/galeon/files/patch-src_mozilla_ContentHandler.cpp
new file mode 100644
index 000000000000..cc1bb7290f85
--- /dev/null
+++ b/www/galeon/files/patch-src_mozilla_ContentHandler.cpp
@@ -0,0 +1,14 @@
+--- src/mozilla/ContentHandler.cpp.orig Sat Apr 12 16:37:06 2003
++++ src/mozilla/ContentHandler.cpp Sat Apr 12 16:38:54 2003
+@@ -364,9 +364,9 @@
+ nsCOMPtr<nsIFilePicker> aFilePicker =
+ do_CreateInstance (G_FILEPICKER_CONTRACTID);
+
+- NS_NAMED_LITERAL_STRING (title, _("Select the destination filename"));
++ NS_NAMED_LITERAL_CSTRING (title, _("Select the destination filename"));
+
+- aFilePicker->Init (aWindowInternal, title.get(),
++ aFilePicker->Init (aWindowInternal, PromiseFlatString(NS_ConvertUTF8toUCS2(title)).get(),
+ nsIFilePicker::modeSave);
+ aFilePicker->SetDefaultString (aDefaultFile);
+ aFilePicker->SetDisplayDirectory (saveDir);