This commit is contained in:
bugzilla%standard8.demon.co.uk 2007-03-13 19:28:32 +00:00
Родитель 7376f641d7
Коммит dbd2c0d5d1
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -108,6 +108,10 @@ nsAbOutlookDirectory::~nsAbOutlookDirectory(void)
NS_IMPL_ISUPPORTS_INHERITED3(nsAbOutlookDirectory, nsAbDirectoryRDFResource,
nsIAbDirectory, nsIAbDirectoryQuery, nsIAbDirectorySearch)
// XXX Bustage fix from bug 361326 this should be defined in a central
// location which I'll follow up with.
const int kOutlookDirSchemeLength = 21;
// nsIRDFResource method
NS_IMETHODIMP nsAbOutlookDirectory::Init(const char *aUri)
{
@ -200,7 +204,7 @@ NS_IMETHODIMP nsAbOutlookDirectory::Init(const char *aUri)
return NS_ERROR_FAILURE;
}
prefix.AssignLiteral(mAbWinType == nsAbWinType_Outlook ? "OP ", "OE ");
prefix.AssignLiteral(mAbWinType == nsAbWinType_Outlook ? "OP " : "OE ");
prefix.Append(unichars);
SetDirName(prefix.get());