mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 14:33:01 +00:00
NFD click callback should return S_OK on OK
This commit is contained in:
parent
2b007a03e0
commit
8a1ba5a544
1 changed files with 1 additions and 1 deletions
2
extern/nfd-modified/src/nfd_win.cpp
vendored
2
extern/nfd-modified/src/nfd_win.cpp
vendored
|
@ -61,7 +61,7 @@ class NFDWinEvents: public IFileDialogEvents {
|
|||
return ret;
|
||||
}
|
||||
|
||||
IFACEMETHODIMP OnFileOk(IFileDialog*) { return E_NOTIMPL; }
|
||||
IFACEMETHODIMP OnFileOk(IFileDialog*) { return S_OK; }
|
||||
IFACEMETHODIMP OnFolderChange(IFileDialog*) { return E_NOTIMPL; }
|
||||
IFACEMETHODIMP OnFolderChanging(IFileDialog*, IShellItem*) { return E_NOTIMPL; }
|
||||
IFACEMETHODIMP OnOverwrite(IFileDialog*, IShellItem*, FDE_OVERWRITE_RESPONSE*) { return E_NOTIMPL; }
|
||||
|
|
Loading…
Reference in a new issue