From 3ac0e555eb6857d23a2e2bbba9220dbfd5e9ec1c Mon Sep 17 00:00:00 2001 From: "darin%meer.net" Date: Fri, 3 Feb 2006 21:50:25 +0000 Subject: [PATCH] fixing build bustage --- xpfe/appshell/src/nsContentTreeOwner.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xpfe/appshell/src/nsContentTreeOwner.cpp b/xpfe/appshell/src/nsContentTreeOwner.cpp index 3249fac2222..07822a6a061 100644 --- a/xpfe/appshell/src/nsContentTreeOwner.cpp +++ b/xpfe/appshell/src/nsContentTreeOwner.cpp @@ -402,9 +402,9 @@ NS_IMETHODIMP nsContentTreeOwner::SetStatus(PRUint32 aStatusType, const PRUnichar* aStatus) { return SetStatusWithContext(aStatusType, - aStatus ? nsDependentString(aStatus) - : EmptyString(), - nsnull); + aStatus ? NS_STATIC_CAST(const nsString &, nsDependentString(aStatus)) + : EmptyString(), + nsnull); } NS_IMETHODIMP nsContentTreeOwner::SetWebBrowser(nsIWebBrowser* aWebBrowser)