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:
committed by
Vadim Zeitlin
parent
e768046774
commit
f58ea62596
@@ -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 */ }
|
||||
|
Reference in New Issue
Block a user