From 1dcb50be4a3783320ad79e53421fdfdd9799dfc5 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sun, 10 Jun 2012 17:09:49 +0000 Subject: [PATCH] Fix compilation error git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dobjcmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/dobjcmn.cpp b/src/common/dobjcmn.cpp index 01a1a6699c..2b6ce68efb 100644 --- a/src/common/dobjcmn.cpp +++ b/src/common/dobjcmn.cpp @@ -508,7 +508,7 @@ bool wxHTMLDataObject::SetData(size_t WXUNUSED(len), const void *buf) return false; // Windows and Mac always use UTF-8, and docs suggest GTK does as well. - const wxString html = wxString::FromUTF8(static_cast(buf)); + wxString html = wxString::FromUTF8(static_cast(buf)); #ifdef __WXMSW__ // To be consistent with other platforms, we only add the Fragment part -- 2.45.2