diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Native_File_Chooser_WIN32.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_Native_File_Chooser_WIN32.cxx b/src/Fl_Native_File_Chooser_WIN32.cxx index 44404ffe8..771c62aeb 100644 --- a/src/Fl_Native_File_Chooser_WIN32.cxx +++ b/src/Fl_Native_File_Chooser_WIN32.cxx @@ -224,7 +224,7 @@ void Fl_Native_File_Chooser::add_pathname(const char *s) { } // FREE A PIDL (Pointer to IDentity List) -void Fl_Native_File_Chooser::FreePIDL(ITEMIDLIST *pidl) { +void Fl_Native_File_Chooser::FreePIDL(LPITEMIDLIST pidl) { IMalloc *imalloc = NULL; if ( SUCCEEDED(SHGetMalloc(&imalloc)) ) { imalloc->Free(pidl); @@ -516,7 +516,7 @@ int Fl_Native_File_Chooser::showdir() { else _binf.lParam = 0; _binf.lpfn = Dir_CB; // OPEN BROWSER - ITEMIDLIST *pidl = SHBrowseForFolder(&_binf); + LPITEMIDLIST pidl = SHBrowseForFolder(&_binf); // CANCEL? if ( pidl == NULL ) return(1); |
