wxPGProperty::GenerateComposedValue() -> protected DoGenerateComposedValue(), added simple public GenerateComposedValue()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56404 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -79,7 +79,7 @@ void wxStringProperty::OnSetValue()
|
||||
if ( HasFlag(wxPG_PROP_COMPOSED_VALUE) )
|
||||
{
|
||||
wxString s;
|
||||
GenerateComposedValue(s);
|
||||
DoGenerateComposedValue(s);
|
||||
m_value = s;
|
||||
}
|
||||
}
|
||||
@@ -101,7 +101,7 @@ wxString wxStringProperty::ValueToString( wxVariant& value,
|
||||
"Sorry, currently default wxPGProperty::ValueToString() "
|
||||
"implementation only works if value is m_value." );
|
||||
|
||||
GenerateComposedValue(s, argFlags);
|
||||
DoGenerateComposedValue(s, argFlags);
|
||||
}
|
||||
|
||||
return s;
|
||||
|
Reference in New Issue
Block a user