wxWindow::GetClientAreaOrigin duplicated wxWindowBase method.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31885 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c0ae5ebe05
commit
a44f67c382
@ -148,10 +148,6 @@ public:
|
|||||||
void ClearUpdateRegion() { m_updateRegion.Clear(); }
|
void ClearUpdateRegion() { m_updateRegion.Clear(); }
|
||||||
void SetUpdateRegion(const wxRegion& region) { m_updateRegion = region; }
|
void SetUpdateRegion(const wxRegion& region) { m_updateRegion = region; }
|
||||||
|
|
||||||
// For implementation purposes - sometimes decorations make the client area
|
|
||||||
// smaller
|
|
||||||
virtual wxPoint GetClientAreaOrigin() const;
|
|
||||||
|
|
||||||
// Process idle (send update events)
|
// Process idle (send update events)
|
||||||
void OnInternalIdle();
|
void OnInternalIdle();
|
||||||
|
|
||||||
|
@ -1372,13 +1372,6 @@ void wxWindow::DoSetClientSize(int width, int height)
|
|||||||
XtVaSetValues(widget, XmNheight, height, NULL);
|
XtVaSetValues(widget, XmNheight, height, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
// For implementation purposes - sometimes decorations make the client area
|
|
||||||
// smaller
|
|
||||||
wxPoint wxWindow::GetClientAreaOrigin() const
|
|
||||||
{
|
|
||||||
return wxPoint(0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxWindow::DoMoveWindowIntr(int xx, int yy, int w, int h,
|
void wxWindow::DoMoveWindowIntr(int xx, int yy, int w, int h,
|
||||||
int flags)
|
int flags)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user