Bug 293679 Hide Compact This Folder for virtual folders r+sr=bienvenu a=asa

This commit is contained in:
neil%parkwaycc.co.uk 2005-05-19 16:27:49 +00:00
Родитель af1ea33dd6
Коммит 4e416a7cd9
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -2728,7 +2728,9 @@ nsMsgDBFolder::GetCanCompact(PRBool *aResult)
PRBool isServer = PR_FALSE;
nsresult rv = GetIsServer(&isServer);
NS_ENSURE_SUCCESS(rv,rv);
*aResult = !isServer; //servers cannot be compacted --> 4.x
// servers cannot be compacted --> 4.x
// virtual search folders cannot be compacted
*aResult = !isServer && !(mFlags & MSG_FOLDER_FLAG_VIRTUAL);
return NS_OK;
}