Module: wine Branch: master Commit: 7236452df83f57aa5c6f951f42ad0e121cf7e639 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7236452df83f57aa5c6f951f42...
Author: Vincent Povirk vincent@codeweavers.com Date: Fri Feb 13 17:07:32 2009 -0600
shell32: Implement UnixFolder_IShellFolder2_GetDefaultColumn.
---
dlls/shell32/shfldr_unixfs.c | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/dlls/shell32/shfldr_unixfs.c b/dlls/shell32/shfldr_unixfs.c index f50e284..9d4e956 100644 --- a/dlls/shell32/shfldr_unixfs.c +++ b/dlls/shell32/shfldr_unixfs.c @@ -1273,8 +1273,14 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_EnumSearches(IShellFolder2* iface static HRESULT WINAPI UnixFolder_IShellFolder2_GetDefaultColumn(IShellFolder2* iface, DWORD dwReserved, ULONG *pSort, ULONG *pDisplay) { - FIXME("stub\n"); - return E_NOTIMPL; + TRACE("(iface=%p,dwReserved=%x,pSort=%p,pDisplay=%p)\n", iface, dwReserved, pSort, pDisplay); + + if (pSort) + *pSort = 0; + if (pDisplay) + *pDisplay = 0; + + return S_OK; }
static HRESULT WINAPI UnixFolder_IShellFolder2_GetDefaultColumnState(IShellFolder2* iface,