Replace wxT() with wxS() in wxPropertyGrid code.
This commit is contained in:
@@ -521,7 +521,7 @@ public:
|
||||
void SelectPage( const wxString& label )
|
||||
{
|
||||
int index = GetPageByName(label);
|
||||
wxCHECK_RET( index >= 0, wxT("No page with such name") );
|
||||
wxCHECK_RET( index >= 0, wxS("No page with such name") );
|
||||
SelectPage( index );
|
||||
}
|
||||
|
||||
|
@@ -1028,7 +1028,7 @@ public:
|
||||
void SetPropertyEditor( wxPGPropArg id, const wxPGEditor* editor )
|
||||
{
|
||||
wxPG_PROP_ARG_CALL_PROLOG()
|
||||
wxCHECK_RET( editor, wxT("unknown/NULL editor") );
|
||||
wxCHECK_RET( editor, wxS("unknown/NULL editor") );
|
||||
p->SetEditor(editor);
|
||||
RefreshProperty(p);
|
||||
}
|
||||
|
@@ -956,14 +956,14 @@ public:
|
||||
*/
|
||||
virtual void SetDialogValue( const wxVariant& WXUNUSED(value) )
|
||||
{
|
||||
wxFAIL_MSG(wxT("re-implement this member function in derived class"));
|
||||
wxFAIL_MSG(wxS("re-implement this member function in derived class"));
|
||||
}
|
||||
|
||||
/** Return value modified by dialog.
|
||||
*/
|
||||
virtual wxVariant GetDialogValue() const
|
||||
{
|
||||
wxFAIL_MSG(wxT("re-implement this member function in derived class"));
|
||||
wxFAIL_MSG(wxS("re-implement this member function in derived class"));
|
||||
return wxVariant();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user