Use wxEmptyString instead of dedicated wxPropertyGridInterface member variable.
This commit is contained in:
@@ -4376,7 +4376,7 @@ bool wxPropertyGrid::DoSelectProperty( wxPGProperty* p, unsigned int flags )
|
||||
{
|
||||
// Clear help box - but only if it was written
|
||||
// by us at previous time.
|
||||
statusbar->SetStatusText( m_emptyString );
|
||||
statusbar->SetStatusText(wxEmptyString);
|
||||
m_iFlags &= ~(wxPG_FL_STRING_IN_STATUSBAR);
|
||||
}
|
||||
}
|
||||
@@ -5152,14 +5152,14 @@ bool wxPropertyGrid::HandleMouseMove( int x, unsigned int y,
|
||||
}
|
||||
else
|
||||
{
|
||||
SetToolTip( m_emptyString );
|
||||
SetToolTip(wxEmptyString);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
SetToolTip( m_emptyString );
|
||||
SetToolTip(wxEmptyString);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user