fix bug VC6 with returning void function
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
16b0811668
commit
243ef54b39
@ -1,7 +1,7 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: wx/dc.h
|
// Name: wx/dc.h
|
||||||
// Purpose: wxDC class
|
// Purpose: wxDC class
|
||||||
// Author: Vadim Zeitlin
|
// Author: Vadim Zeitlin
|
||||||
// Modified by:
|
// Modified by:
|
||||||
// Created: 05/25/99
|
// Created: 05/25/99
|
||||||
// RCS-ID: $Id$
|
// RCS-ID: $Id$
|
||||||
@ -187,7 +187,8 @@ public:
|
|||||||
virtual void DoGetSize(int *width, int *height) const = 0;
|
virtual void DoGetSize(int *width, int *height) const = 0;
|
||||||
void GetSize(int *width, int *height) const
|
void GetSize(int *width, int *height) const
|
||||||
{
|
{
|
||||||
return DoGetSize(width, height);
|
DoGetSize(width, height);
|
||||||
|
return ;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxSize GetSize() const
|
wxSize GetSize() const
|
||||||
|
Loading…
Reference in New Issue
Block a user