Don't return the return value of a void method in a void method

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38087 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp 2006-03-15 03:42:26 +00:00
parent d394f0c93f
commit 74af7bcf4f

View File

@ -217,7 +217,7 @@ protected:
// coordinates: this is already the case
virtual void DoGetScreenPosition(int *x, int *y) const
{
return DoGetPosition(x, y);
DoGetPosition(x, y);
}
// test whether this window makes part of the frame