mirror of
https://github.com/quantum5/Zalgo.git
synced 2025-04-24 13:41:57 -04:00
Removed __super VC++ extension.
Signed-off-by: Xiaomao Chen <xiaomao5@live.com>
This commit is contained in:
parent
207d071b24
commit
6a897adb43
|
@ -61,7 +61,7 @@ LRESULT APIENTRY EditSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lP
|
|||
BOOL MainWindow::WinRegisterClass(WNDCLASS *pwc)
|
||||
{
|
||||
pwc->style = CS_HREDRAW | CS_VREDRAW;
|
||||
return __super::WinRegisterClass(pwc);
|
||||
return Window::WinRegisterClass(pwc);
|
||||
}
|
||||
|
||||
LRESULT MainWindow::OnCreate()
|
||||
|
@ -437,7 +437,7 @@ LRESULT MainWindow::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
SetWindowLongPtr(m_hwnd, GWL_EXSTYLE, GetWindowLongPtr(m_hwnd, GWL_EXSTYLE) & ~WS_EX_COMPOSITED);
|
||||
return 0;
|
||||
}
|
||||
return __super::HandleMessage(uMsg, wParam, lParam);
|
||||
return Window::HandleMessage(uMsg, wParam, lParam);
|
||||
}
|
||||
|
||||
MainWindow *MainWindow::Create(LPCTSTR szTitle)
|
||||
|
|
|
@ -328,7 +328,7 @@ LRESULT PreviewWindow::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
return 0;
|
||||
}
|
||||
|
||||
return __super::HandleMessage(uMsg, wParam, lParam);
|
||||
return Window::HandleMessage(uMsg, wParam, lParam);
|
||||
}
|
||||
|
||||
PreviewWindow *PreviewWindow::Create(LPCTSTR szTitle)
|
||||
|
|
Loading…
Reference in a new issue