mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
Fix for #18679
This commit is contained in:
parent
bbd83de51d
commit
7ded49fa53
@ -1784,11 +1784,14 @@ NS_IMETHODIMP nsPluginInstanceOwner::ShowStatus(const char *aStatusMsg)
|
||||
{
|
||||
nsCOMPtr<nsIBrowserWindow> browserWindow(do_QueryInterface(rootContainer));
|
||||
|
||||
if (rootContainer)
|
||||
if(browserWindow)
|
||||
{
|
||||
nsAutoString msg = nsAutoString(aStatusMsg);
|
||||
if (rootContainer)
|
||||
{
|
||||
nsAutoString msg = nsAutoString(aStatusMsg);
|
||||
|
||||
rv = browserWindow->SetStatus(msg.GetUnicode());
|
||||
rv = browserWindow->SetStatus(msg.GetUnicode());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1784,11 +1784,14 @@ NS_IMETHODIMP nsPluginInstanceOwner::ShowStatus(const char *aStatusMsg)
|
||||
{
|
||||
nsCOMPtr<nsIBrowserWindow> browserWindow(do_QueryInterface(rootContainer));
|
||||
|
||||
if (rootContainer)
|
||||
if(browserWindow)
|
||||
{
|
||||
nsAutoString msg = nsAutoString(aStatusMsg);
|
||||
if (rootContainer)
|
||||
{
|
||||
nsAutoString msg = nsAutoString(aStatusMsg);
|
||||
|
||||
rv = browserWindow->SetStatus(msg.GetUnicode());
|
||||
rv = browserWindow->SetStatus(msg.GetUnicode());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user