Another bustage fix for bug 361326.

This commit is contained in:
bugzilla%standard8.demon.co.uk 2007-03-13 20:02:03 +00:00
parent 54866bcb79
commit 602e1efc49

View File

@ -200,7 +200,10 @@ NS_IMETHODIMP nsAbOutlookDirectory::Init(const char *aUri)
return NS_ERROR_FAILURE;
}
prefix.AssignLiteral(mAbWinType == nsAbWinType_Outlook ? "OP " : "OE ");
if (mAbWinType == nsAbWinType_Outlook)
prefix.AssignLiteral("OP ");
else
prefix.AssignLiteral("OE ");
prefix.Append(unichars);
SetDirName(prefix.get());