small changes to clients of string converting APIs

This commit is contained in:
scc@netscape.com
2000-03-26 12:05:32 +00:00
parent ea1d232597
commit ec00ff09a8
6 changed files with 14 additions and 13 deletions

View File

@@ -430,7 +430,8 @@ NS_IMETHODIMP nsContentTreeOwner::SetTitle(const PRUnichar* aTitle)
if(mTitlePreface.Length() > 0)
{
// Title will be: "Preface: Doc Title - Mozilla"
title = mTitlePreface + docTitle;
title = mTitlePreface;
title.Append(docTitle);
}
else
{