From 43dbdc1eb7b96e4672d0d3bd68f01fd65f1690b7 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Thu, 29 Apr 2004 22:41:05 +0000 Subject: fix build bustage --- embed/mozilla/FilePicker.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/embed/mozilla/FilePicker.cpp b/embed/mozilla/FilePicker.cpp index 91a893d2a..188cae460 100644 --- a/embed/mozilla/FilePicker.cpp +++ b/embed/mozilla/FilePicker.cpp @@ -83,7 +83,7 @@ GFilePicker::~GFilePicker() /* void init (in nsIDOMWindow parent, in AString title, in short mode); */ #if MOZILLA_SNAPSHOT < 16 -NS_IMETHODIMP GFilePicker::Init(nsIDOMWindowInternal *parent, PRUnichar *title, PRInt16 mode) +NS_IMETHODIMP GFilePicker::Init(nsIDOMWindowInternal *parent, const PRUnichar *title, PRInt16 mode) #else NS_IMETHODIMP GFilePicker::Init(nsIDOMWindow *parent, const nsAString& title, PRInt16 mode) #endif @@ -287,7 +287,11 @@ NS_IMETHODIMP GFilePicker::GetDefaultString(nsAString& aDefaultString) { converted = g_filename_to_utf8(filename, -1, NULL, NULL, NULL); +#if MOZILLA_SNAPSHOT < 16 + *aDefaultString = ToNewUnicode (NS_ConvertUTF8toUTF16 (converted)); +#else aDefaultString = NS_ConvertUTF8toUTF16 (converted); +#endif g_free (filename); g_free (converted); -- cgit v1.2.3