Another bustage fix for bug 361326.

This commit is contained in:
bugzilla%standard8.demon.co.uk 2007-03-13 20:02:03 +00:00
Родитель c4aa5ba739
Коммит ea2fc24466
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -200,7 +200,10 @@ NS_IMETHODIMP nsAbOutlookDirectory::Init(const char *aUri)
return NS_ERROR_FAILURE; 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); prefix.Append(unichars);
SetDirName(prefix.get()); SetDirName(prefix.get());