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

@@ -66,10 +66,10 @@ namespace UI
void CWindow::Clear()
{
// FIXME : Children을 즉시 Delete하지는 않는다.
// 어차피 Python쪽에서 Destroy가 하나씩 다시 호출 될 것이므로..
// 하지만 만약을 위해 링크는 끊어 놓는다.
// 더 좋은 형태는 있는가? - [levites]
// FIXME : Children을 즉시 Delete하지는 않는다.
// 어차피 Python쪽에서 Destroy가 하나씩 다시 호출 될 것이므로..
// 하지만 만약을 위해 링크는 끊어 놓는다.
// 더 좋은 형태는 있는가? - [levites]
std::for_each(m_pChildList.begin(), m_pChildList.end(), FClear());
m_pChildList.clear();
@@ -93,8 +93,8 @@ namespace UI
m_bShow = false;
}
// NOTE : IsShow는 "자신이 보이는가?" 이지만, __IsShowing은 "자신이 그려지고 있는가?" 를 체크한다
// 자신은 Show 지만 Tree 위쪽의 Parent 중 하나는 Hide 일 수 있으므로.. - [levites]
// NOTE : IsShow는 "자신이 보이는가?" 이지만, __IsShowing은 "자신이 그려지고 있는가?" 를 체크한다
// 자신은 Show 지만 Tree 위쪽의 Parent 중 하나는 Hide 일 수 있으므로.. - [levites]
bool CWindow::IsRendering()
{
if (!IsShow())
@@ -577,7 +577,7 @@ namespace UI
BOOL CWindow::OnMouseLeftButtonUp()
{
PyCallClassMemberFunc(m_poHandler, "OnMouseLeftButtonUp", BuildEmptyTuple());
return TRUE; // NOTE : ButtonUp은 예외로 무조건 TRUE
return TRUE; // NOTE : ButtonUp은 예외로 무조건 TRUE
}
BOOL CWindow::OnMouseLeftButtonDoubleClick()
@@ -1291,7 +1291,7 @@ namespace UI
}
///////////////////////////////////////////////////////////////////////////////////////////////
// MarkBox - 마크 출력용 UI 윈도우
// MarkBox - 마크 출력용 UI 윈도우
///////////////////////////////////////////////////////////////////////////////////////////////
CMarkBox::CMarkBox(PyObject * ppyObject) : CWindow(ppyObject)
{