Module: wine Branch: master Commit: abb7f92b780e0baffd973f73f6f8df2150b44f1e URL: http://source.winehq.org/git/wine.git/?a=commit;h=abb7f92b780e0baffd973f73f6...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Tue Oct 14 09:01:08 2008 +0200
shell32: Add a FIXME for unimplemented view modes.
---
dlls/shell32/shlview.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/dlls/shell32/shlview.c b/dlls/shell32/shlview.c index 20a1efb..e3727ba 100644 --- a/dlls/shell32/shlview.c +++ b/dlls/shell32/shlview.c @@ -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;