mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 05:51:26 +08:00
[RAPPS] Fix compilation
DPA_Search() function requires 6 parameters, not 4!
This commit is contained in:
@@ -114,7 +114,7 @@ public:
|
||||
|
||||
INT Search(T* item, INT iStart, UINT uFlags)
|
||||
{
|
||||
return DPA_Search(m_hDpa, s_OnCompareItems, (LPARAM)this);
|
||||
return DPA_Search(m_hDpa, item, 0, s_OnCompareItems, (LPARAM)this, 0);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user