Remove initializations of wxString with wxEmptyString

An empty string is the default
This commit is contained in:
Paul Cornett
2017-05-28 23:53:44 -07:00
parent 7358202d29
commit 01909a20c8
6 changed files with 9 additions and 9 deletions

View File

@@ -648,8 +648,8 @@ protected:
class WXDLLIMPEXP_HTML wxHtmlLinkInfo : public wxObject
{
public:
wxHtmlLinkInfo() : wxObject()
{ m_Href = m_Target = wxEmptyString; m_Event = NULL; m_Cell = NULL; }
wxHtmlLinkInfo()
{ m_Event = NULL; m_Cell = NULL; }
wxHtmlLinkInfo(const wxString& href, const wxString& target = wxString())
: m_Href(href)
, m_Target(target)