Made wxPropertyGridHitTestResult a real class (works better that way with SWIG)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61745 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -733,11 +733,13 @@ wxPGProperty* wxPropertyGridPageState::DoGetItemAtY( int y ) const
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
|
||||
wxPropertyGridHitTestResult wxPropertyGridPageState::HitTest( const wxPoint&pt ) const
|
||||
wxPropertyGridHitTestResult
|
||||
wxPropertyGridPageState::HitTest( const wxPoint&pt ) const
|
||||
{
|
||||
wxPropertyGridHitTestResult result;
|
||||
result.column = HitTestH( pt.x, &result.splitter, &result.splitterHitOffset );
|
||||
result.property = DoGetItemAtY( pt.y );
|
||||
result.m_column = HitTestH( pt.x, &result.m_splitter,
|
||||
&result.m_splitterHitOffset );
|
||||
result.m_property = DoGetItemAtY( pt.y );
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user