diff --git a/xpfe/AppCores/src/nsBrowserAppCore.cpp b/xpfe/AppCores/src/nsBrowserAppCore.cpp index 71906b481524..6d341266987b 100644 --- a/xpfe/AppCores/src/nsBrowserAppCore.cpp +++ b/xpfe/AppCores/src/nsBrowserAppCore.cpp @@ -1579,7 +1579,7 @@ nsBrowserAppCore::OnStartDocumentLoad(nsIDocumentLoader* aLoader, nsIURI* aURL, if (chrome) { - chrome->AppendRelativeUnixPath("netwerk/content/default/"); + chrome->AppendRelativeUnixPath("netwerk/content/"); chrome->AppendRelativeUnixPath(scheme); PRBool exists; chrome->Exists(&exists); @@ -1588,7 +1588,7 @@ nsBrowserAppCore::OnStartDocumentLoad(nsIDocumentLoader* aLoader, nsIURI* aURL, { nsAutoString iconURIString; - iconURIString.SetString("chrome://netwerk/content/default/"); + iconURIString.SetString("chrome://netwerk/content/"); iconURIString.Append(scheme); iconURIString.Append("/working.gif"); @@ -1736,7 +1736,7 @@ end: if (chrome) { - chrome->AppendRelativeUnixPath("netwerk/content/default/"); + chrome->AppendRelativeUnixPath("netwerk/content/"); chrome->AppendRelativeUnixPath(scheme); PRBool exists; chrome->Exists(&exists); @@ -1747,7 +1747,7 @@ end: aUrl->GetScheme(&scheme); nsAutoString iconURIString; - iconURIString.SetString("chrome://netwerk/content/default/"); + iconURIString.SetString("chrome://netwerk/content/"); iconURIString.Append(scheme); if (NS_SUCCEEDED(aStatus)) iconURIString.Append("/successful.gif");