shell32: Add a FIXME for unimplemented view modes.

Henri Verbeet hverbeet at codeweavers.com
Tue Oct 14 02:01:08 CDT 2008


---
 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;
-- 
1.5.6.4



--------------040606000404020603000107--



More information about the wine-patches mailing list