From 94701a5c103069a97aa0ff312b6813e0d45d2121 Mon Sep 17 00:00:00 2001 From: "locka%iol.ie" Date: Tue, 30 Nov 1999 00:21:29 +0000 Subject: [PATCH] Removed "const" on the aResult parameter on CWebShellContainer override of nsIBrowserWindow::GetTitle --- webshell/embed/ActiveX/WebShellContainer.cpp | 2 +- webshell/embed/ActiveX/WebShellContainer.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webshell/embed/ActiveX/WebShellContainer.cpp b/webshell/embed/ActiveX/WebShellContainer.cpp index cb7eaeb67eb..fac24915c68 100644 --- a/webshell/embed/ActiveX/WebShellContainer.cpp +++ b/webshell/embed/ActiveX/WebShellContainer.cpp @@ -195,7 +195,7 @@ CWebShellContainer::SetTitle(const PRUnichar* aTitle) NS_IMETHODIMP -CWebShellContainer::GetTitle(const PRUnichar** aResult) +CWebShellContainer::GetTitle(PRUnichar** aResult) { NG_TRACE_METHOD(CWebShellContainer::GetTitle); *aResult = nsnull; diff --git a/webshell/embed/ActiveX/WebShellContainer.h b/webshell/embed/ActiveX/WebShellContainer.h index c5afffb70df..396af1e8500 100644 --- a/webshell/embed/ActiveX/WebShellContainer.h +++ b/webshell/embed/ActiveX/WebShellContainer.h @@ -67,7 +67,7 @@ public: NS_IMETHOD SetChrome(PRUint32 aNewChromeMask); NS_IMETHOD GetChrome(PRUint32& aChromeMaskResult); NS_IMETHOD SetTitle(const PRUnichar* aTitle); - NS_IMETHOD GetTitle(const PRUnichar** aResult); + NS_IMETHOD GetTitle(PRUnichar** aResult) = 0; NS_IMETHOD SetStatus(const PRUnichar* aStatus); NS_IMETHOD GetStatus(const PRUnichar** aResult); NS_IMETHOD SetDefaultStatus(const PRUnichar* aStatus);