mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-15 13:09:14 +00:00
Removed "const" on the aResult parameter on CWebShellContainer override of nsIBrowserWindow::GetTitle
This commit is contained in:
parent
9f6e53d467
commit
f8e2769fdd
@ -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;
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user