Revert "Replace ItemCallbacks with lambdas (#3948)"
This reverts commit 496c337cdf.
This commit is contained in:
committed by
Alexander Harkness
parent
700bbdabf5
commit
49c443896d
@@ -1,4 +1,4 @@
|
||||
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
||||
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
||||
|
||||
#include "Window.h"
|
||||
#include "WindowOwner.h"
|
||||
@@ -362,12 +362,12 @@ void cWindow::OwnerDestroyed()
|
||||
|
||||
|
||||
|
||||
bool cWindow::ForEachPlayer(const cPlayerListCallback & a_Callback)
|
||||
bool cWindow::ForEachPlayer(cItemCallback<cPlayer> & a_Callback)
|
||||
{
|
||||
cCSLock Lock(m_CS);
|
||||
for (auto & Player : m_OpenedBy)
|
||||
for (cPlayerList::iterator itr = m_OpenedBy.begin(), end = m_OpenedBy.end(); itr != end; ++itr)
|
||||
{
|
||||
if (a_Callback(*Player))
|
||||
if (a_Callback.Item(*itr))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@@ -379,12 +379,12 @@ bool cWindow::ForEachPlayer(const cPlayerListCallback & a_Callback)
|
||||
|
||||
|
||||
|
||||
bool cWindow::ForEachClient(cClientHandleCallback & a_Callback)
|
||||
bool cWindow::ForEachClient(cItemCallback<cClientHandle> & a_Callback)
|
||||
{
|
||||
cCSLock Lock(m_CS);
|
||||
for (auto & Player : m_OpenedBy)
|
||||
for (cPlayerList::iterator itr = m_OpenedBy.begin(), end = m_OpenedBy.end(); itr != end; ++itr)
|
||||
{
|
||||
if (a_Callback(*Player->GetClientHandle()))
|
||||
if (a_Callback.Item((*itr)->GetClientHandle()))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user