shell32: Add a FIXME for unimplemented view modes.

This commit is contained in:
Henri Verbeet 2008-10-14 09:01:08 +02:00 committed by Alexandre Julliard
parent 67f86a410f
commit abb7f92b78
1 changed files with 6 additions and 1 deletions

View File

@ -316,7 +316,12 @@ static BOOL ShellView_CreateList (IShellViewImpl * This)
case FVM_DETAILS: dwStyle |= LVS_REPORT; break;
case FVM_SMALLICON: dwStyle |= LVS_SMALLICON; break;
case FVM_LIST: dwStyle |= LVS_LIST; break;
default: dwStyle |= LVS_LIST; break;
default:
{
FIXME("ViewMode %d not implemented\n", This->FolderSettings.ViewMode);
dwStyle |= LVS_LIST;
break;
}
}
if (This->FolderSettings.fFlags & FWF_AUTOARRANGE) dwStyle |= LVS_AUTOARRANGE;