Use wxEmptyString instead of wxString().

To keep uniform notation of empty strings.
This commit is contained in:
Artur Wieczorek
2015-06-12 23:35:17 +02:00
parent 09e1fbef70
commit 4d4ece53f1
2 changed files with 2 additions and 2 deletions

View File

@@ -1042,7 +1042,7 @@ wxWindow* wxPGChoiceEditor::CreateControlsBase( wxPropertyGrid* propGrid,
#endif
cb->Create(ctrlParent,
wxID_ANY,
wxString(),
wxEmptyString,
po,
si,
labels,

View File

@@ -1007,7 +1007,7 @@ wxString wxPGProperty::ValueToString( wxVariant& WXUNUSED(value),
int argFlags ) const
{
wxCHECK_MSG( GetChildCount() > 0,
wxString(),
wxEmptyString,
"If user property does not have any children, it must "
"override GetValueAsString" );