From c2efba6907fab934a04959b9bb644cf7141cc955 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Sat, 1 Jul 2023 23:04:04 +0100 Subject: matched T2DLL as well as i can --- src/T2DLL/T2OptionPluginList.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/T2DLL/T2OptionPluginList.cpp') diff --git a/src/T2DLL/T2OptionPluginList.cpp b/src/T2DLL/T2OptionPluginList.cpp index d060b95..278086d 100644 --- a/src/T2DLL/T2OptionPluginList.cpp +++ b/src/T2DLL/T2OptionPluginList.cpp @@ -22,11 +22,11 @@ void T2OptionPluginList::OnIdle(T2TowerDoc* towerDoc) { BOOL T2OptionPluginList::DispatchEvent(OPTIONEVENTTYPE eventType, T2TowerDoc* towerDoc, void* data) { LArrayIterator iterator(*this); - T2OptionPlugin *plugin; BOOL result = true; - while (iterator.Next(&plugin)) { - result = result && plugin->OnEvent(eventType, towerDoc, data); + T2OptionPlugin *thePlugin; + while (iterator.Next(&thePlugin)) { + result = result && thePlugin->OnEvent(eventType, towerDoc, data); } return result; -- cgit v1.2.3