don't return void values
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38432 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -5520,12 +5520,12 @@ bool wxGenericListCtrl::DoPopupMenu( wxMenu *menu, int x, int y )
|
|||||||
|
|
||||||
void wxGenericListCtrl::DoClientToScreen( int *x, int *y ) const
|
void wxGenericListCtrl::DoClientToScreen( int *x, int *y ) const
|
||||||
{
|
{
|
||||||
return m_mainWin->DoClientToScreen(x, y);
|
m_mainWin->DoClientToScreen(x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxGenericListCtrl::DoScreenToClient( int *x, int *y ) const
|
void wxGenericListCtrl::DoScreenToClient( int *x, int *y ) const
|
||||||
{
|
{
|
||||||
return m_mainWin->DoScreenToClient(x, y);
|
m_mainWin->DoScreenToClient(x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxGenericListCtrl::SetFocus()
|
void wxGenericListCtrl::SetFocus()
|
||||||
|
Reference in New Issue
Block a user