Commit abb7f92b authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

shell32: Add a FIXME for unimplemented view modes.

parent 67f86a41
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment