Remove (most) occurrences of wxT() macro from the samples

Also replace wxChar* with wxString.

Closes https://github.com/wxWidgets/wxWidgets/pull/945
This commit is contained in:
Blake-Eryx
2018-09-23 01:15:08 +02:00
committed by Vadim Zeitlin
parent e768046774
commit f58ea62596
93 changed files with 4362 additions and 4358 deletions

View File

@@ -256,7 +256,7 @@ public:
int GetNumberCols() wxOVERRIDE { return m_sizeGrid; }
wxString GetValue( int row, int col ) wxOVERRIDE
{
return wxString::Format(wxT("(%d, %d)"), row, col);
return wxString::Format("(%d, %d)", row, col);
}
void SetValue( int , int , const wxString& ) wxOVERRIDE { /* ignore */ }