From 2efa56ff58b2612492adf9c89499898e56e48a04 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Thu, 18 Sep 2003 22:48:17 +0000 Subject: [PATCH] fix for mingw build svn path=/trunk/; revision=6095 --- reactos/subsys/system/explorer/utility/shellclasses.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/system/explorer/utility/shellclasses.cpp b/reactos/subsys/system/explorer/utility/shellclasses.cpp index 6438b34c650..cf8f13949f7 100644 --- a/reactos/subsys/system/explorer/utility/shellclasses.cpp +++ b/reactos/subsys/system/explorer/utility/shellclasses.cpp @@ -329,8 +329,8 @@ LPITEMIDLIST ShellPath::create_absolute_pidl(LPCITEMIDLIST parent_pidl, HWND hwn { static DynamicFct ILCombine(_T("SHELL32"), 25); - if (ILCombine.found()) - return ILCombine(parent_pidl, _p); + if (ILCombine) + return (*ILCombine)(parent_pidl, _p); // create a new item id list with _p append behind parent_pidl int l1 = _malloc->GetSize((void*)parent_pidl) - sizeof(USHORT/*SHITEMID::cb*/);