mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 16:12:02 +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)
|
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…
Add table
Add a link
Reference in a new issue