summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/TacRefDlg.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-09-15 00:53:01 +0200
committerAki <please@ignore.pl>2022-09-15 00:53:01 +0200
commitce550f08fa91598612c016ebebc89c4af2e9505e (patch)
tree46be504b3831acc213b2da7feae38b1f1f6768ed /StarsEx/TacRefDlg.cpp
parent5310ea3564fe98b2940a63b72621b79de9290f77 (diff)
downloadstarshatter-ce550f08fa91598612c016ebebc89c4af2e9505e.zip
starshatter-ce550f08fa91598612c016ebebc89c4af2e9505e.tar.gz
starshatter-ce550f08fa91598612c016ebebc89c4af2e9505e.tar.bz2
Renamed EventDispatch and EventTarget by adding UI prefix
Diffstat (limited to 'StarsEx/TacRefDlg.cpp')
-rw-r--r--StarsEx/TacRefDlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/StarsEx/TacRefDlg.cpp b/StarsEx/TacRefDlg.cpp
index ff623bc..6afa3ed 100644
--- a/StarsEx/TacRefDlg.cpp
+++ b/StarsEx/TacRefDlg.cpp
@@ -22,7 +22,7 @@
#include "Game.h"
#include "ContentBundle.h"
-#include "EventDispatch.h"
+#include "UIEventDispatch.h"
#include "Mouse.h"
#include "Button.h"
#include "ListBox.h"
@@ -430,7 +430,7 @@ TacRefDlg::ExecFrame()
bool
TacRefDlg::SetCaptureBeauty()
{
- EventDispatch* dispatch = EventDispatch::GetInstance();
+ UIEventDispatch* dispatch = UIEventDispatch::GetInstance();
if (dispatch && beauty)
return dispatch->CaptureMouse(beauty) ? true : false;
@@ -440,7 +440,7 @@ TacRefDlg::SetCaptureBeauty()
bool
TacRefDlg::ReleaseCaptureBeauty()
{
- EventDispatch* dispatch = EventDispatch::GetInstance();
+ UIEventDispatch* dispatch = UIEventDispatch::GetInstance();
if (dispatch && beauty)
return dispatch->ReleaseMouse(beauty) ? true : false;