Bug 486679 - misleading embedding assertion about NS_APP_USER_PROFILE_50_DIR not being defined, r=bsmedberg

This commit is contained in:
Tomeu Vizoso 2009-04-13 13:34:01 -04:00
Родитель 945783a7f1
Коммит 27e82b9fa9
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -130,7 +130,8 @@ nsXREDirProvider::Initialize(nsIFile *aXULAppDir,
if (app) {
PRBool per = PR_FALSE;
app->GetFile(NS_APP_USER_PROFILE_50_DIR, &per, getter_AddRefs(mProfileDir));
NS_ASSERTION(per, "NS_APP_USER_PROFILE_50_DIR no defined! This shouldn't happen!");
NS_ASSERTION(per, "NS_APP_USER_PROFILE_50_DIR must be persistent!");
NS_ASSERTION(mProfileDir, "NS_APP_USER_PROFILE_50_DIR not defined! This shouldn't happen!");
}
}