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