mirror of
https://github.com/reactos/reactos.git
synced 2025-04-03 20:21:17 +00:00
[RAPPS] Fix compilation
DPA_Search() function requires 6 parameters, not 4!
This commit is contained in:
parent
6cc607bac2
commit
2f46ab2104
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue