Replaces references to wxS("") with wxEmptyString in wxPG.
This commit is contained in:
@@ -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);
|
||||||
|
Reference in New Issue
Block a user