Replaces references to wxS("") with wxEmptyString in wxPG.

This commit is contained in:
Artur Wieczorek
2015-05-31 19:14:52 +02:00
parent 67bfb78ace
commit 7d6f71bc5e

View File

@@ -321,7 +321,7 @@ private:
{ {
while ( m_columns.size() < count ) while ( m_columns.size() < count )
{ {
wxHeaderColumnSimple* colInfo = new wxHeaderColumnSimple(""); wxHeaderColumnSimple* colInfo = new wxHeaderColumnSimple(wxEmptyString);
m_columns.push_back(colInfo); m_columns.push_back(colInfo);
} }
} }
@@ -1632,7 +1632,7 @@ void wxPropertyGridManager::RecreateControls()
{ {
m_pTxtHelpCaption = new wxStaticText(this, m_pTxtHelpCaption = new wxStaticText(this,
wxID_ANY, wxID_ANY,
wxS(""), wxEmptyString,
wxDefaultPosition, wxDefaultPosition,
wxDefaultSize, wxDefaultSize,
wxALIGN_LEFT|wxST_NO_AUTORESIZE); wxALIGN_LEFT|wxST_NO_AUTORESIZE);
@@ -1643,7 +1643,7 @@ void wxPropertyGridManager::RecreateControls()
{ {
m_pTxtHelpContent = new wxStaticText(this, m_pTxtHelpContent = new wxStaticText(this,
wxID_ANY, wxID_ANY,
wxS(""), wxEmptyString,
wxDefaultPosition, wxDefaultPosition,
wxDefaultSize, wxDefaultSize,
wxALIGN_LEFT|wxST_NO_AUTORESIZE); wxALIGN_LEFT|wxST_NO_AUTORESIZE);