Replace C++11 expressions with C++03 ones

This commit is contained in:
Pavel Kalugin
2018-09-04 12:41:40 +03:00
parent e07d27ce78
commit db83d41693

View File

@@ -1169,7 +1169,7 @@ wxString wxGridTableBase::GetColLabelValue( int col )
wxString wxGridTableBase::GetCornerLabelValue() const
{
return wxString{};
return wxString();
}
wxString wxGridTableBase::GetTypeName( int WXUNUSED(row), int WXUNUSED(col) )
@@ -7104,7 +7104,7 @@ wxString wxGrid::GetCornerLabelValue() const
}
else
{
return wxString{};
return wxString();
}
}