From b8a7d0e9d332cb1f1adef490fe18e352afb5a341 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 6 May 2014 00:02:35 -0400 Subject: [PATCH] MGR: Make the HTML page we inject notices into a valid HTML page --- clientgui/NoticeListCtrl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clientgui/NoticeListCtrl.cpp b/clientgui/NoticeListCtrl.cpp index ae6c658dbc..c21ec44d84 100644 --- a/clientgui/NoticeListCtrl.cpp +++ b/clientgui/NoticeListCtrl.cpp @@ -95,7 +95,7 @@ bool CNoticeListCtrl::Create( wxWindow* parent ) { SetSizer(topsizer); m_itemCount = 0; - m_noticesBody = wxT(""); + m_noticesBody = wxT(""); // Display the fetching notices message until we have notices // to display or have determined that there are no notices. @@ -133,7 +133,7 @@ void CNoticeListCtrl::SetItemCount(int newCount) { wxASSERT(wxDynamicCast(pSkinAdvanced, CSkinAdvanced)); m_itemCount = newCount; - m_noticesBody = wxT(""); + m_noticesBody = wxT(""); for (i=0; iIsConnected()) { @@ -228,7 +228,7 @@ void CNoticeListCtrl::SetItemCount(int newCount) { } m_noticesBody += strBuffer; } - m_noticesBody += wxT(""); + m_noticesBody += wxT(""); m_browser->SetPage(m_noticesBody, wxT("http://")); }