Remove initializations of wxString with wxEmptyString
An empty string is the default
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user