From 7d6f71bc5e6425b4584970e633ae7beb0bee9975 Mon Sep 17 00:00:00 2001 From: Artur Wieczorek Date: Sun, 31 May 2015 19:14:52 +0200 Subject: [PATCH] Replaces references to wxS("") with wxEmptyString in wxPG. --- src/propgrid/manager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/propgrid/manager.cpp b/src/propgrid/manager.cpp index fd207671a0..5ef9023124 100644 --- a/src/propgrid/manager.cpp +++ b/src/propgrid/manager.cpp @@ -321,7 +321,7 @@ private: { while ( m_columns.size() < count ) { - wxHeaderColumnSimple* colInfo = new wxHeaderColumnSimple(""); + wxHeaderColumnSimple* colInfo = new wxHeaderColumnSimple(wxEmptyString); m_columns.push_back(colInfo); } } @@ -1632,7 +1632,7 @@ void wxPropertyGridManager::RecreateControls() { m_pTxtHelpCaption = new wxStaticText(this, wxID_ANY, - wxS(""), + wxEmptyString, wxDefaultPosition, wxDefaultSize, wxALIGN_LEFT|wxST_NO_AUTORESIZE); @@ -1643,7 +1643,7 @@ void wxPropertyGridManager::RecreateControls() { m_pTxtHelpContent = new wxStaticText(this, wxID_ANY, - wxS(""), + wxEmptyString, wxDefaultPosition, wxDefaultSize, wxALIGN_LEFT|wxST_NO_AUTORESIZE);