file encoding to utf-8

This commit is contained in:
d1str4ught
2025-08-19 00:30:50 +02:00
parent be56f3f31a
commit ea712bec83
241 changed files with 1753 additions and 1753 deletions

View File

@@ -534,7 +534,7 @@ namespace UI
if (m_pActiveWindow)
m_pActiveWindow->OnKillFocus();
// 이미 락된 윈도우리스트안에 있다면 제거한다..
// 이미 락된 윈도우리스트안에 있다면 제거한다..
m_LockWindowList.remove(pWin);
if (m_pLockWindow)
@@ -575,8 +575,8 @@ namespace UI
if (m_pActiveWindow)
{
// NOTE : 누적된 Window가 많아지면 Clear를 해줘야 할까?
// 일단은 중복 누적이 안되며 포커스 되는 갯수 자체가 5개 미만이니 굳이 필요하지는 않을 듯.. - [levites]
// NOTE : 누적된 Window가 많아지면 Clear를 해줘야 할까?
// 일단은 중복 누적이 안되며 포커스 되는 갯수 자체가 5개 미만이니 굳이 필요하지는 않을 듯.. - [levites]
m_ActiveWindowList.push_back(m_pActiveWindow);
m_pActiveWindow->OnKillFocus();
}
@@ -618,8 +618,8 @@ namespace UI
CWindow * pParentWindow = pWin->GetParent();
pParentWindow->SetTop(pWin);
// NOTE : Capture가 리셋된다..? - [levites]
// NOTE : 인벤토리에서 아이템을 드래그 해서 밖에다 놓을때 캡춰가 남아서 창의 버튼을 두번 눌러야 하는 버그를 위해 추가
// NOTE : Capture가 리셋된다..? - [levites]
// NOTE : 인벤토리에서 아이템을 드래그 해서 밖에다 놓을때 캡춰가 남아서 창의 버튼을 두번 눌러야 하는 버그를 위해 추가
// ResetCapture();
}
@@ -628,7 +628,7 @@ namespace UI
if (m_pLockWindow)
return;
// GameLayer에 속해 있는 윈도우가 피킹 됐다면 무조건 SetTop을 해준다.
// GameLayer에 속해 있는 윈도우가 피킹 됐다면 무조건 SetTop을 해준다.
TLayerContainer::iterator itor = m_LayerWindowMap.find("UI");
if (itor == m_LayerWindowMap.end())
return;
@@ -896,7 +896,7 @@ namespace UI
{
if (m_pLeftCaptureWindow->OnMouseLeftButtonUp())
{
// NOTE : 여기서 m_pLeftCaptureWindow가 NULL 일 수 있습니다!! - [levites]
// NOTE : 여기서 m_pLeftCaptureWindow가 NULL 일 수 있습니다!! - [levites]
m_pLeftCaptureWindow = NULL;
return;
}
@@ -1099,7 +1099,7 @@ namespace UI
return;
}
// NOTE : 전체로 돌리지 않고 Activate되어있는 EditLine에만 보내는 이벤트
// NOTE : 전체로 돌리지 않고 Activate되어있는 EditLine에만 보내는 이벤트
}
void CWindowManager::RunChangeCodePage()