Don't return a void value here - VC6 doesn't like it

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38113 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp
2006-03-15 19:49:39 +00:00
parent 51d4293d68
commit aa738eb8e3

View File

@@ -721,7 +721,7 @@ void wxWindowBase::DoGetScreenPosition(int *x, int *y) const
if ( y )
*y = 0;
return ClientToScreen(x, y);
ClientToScreen(x, y);
}
// ----------------------------------------------------------------------------