summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/text/wx
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/text/wx')
-rw-r--r--WebCore/platform/text/wx/StringWx.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/WebCore/platform/text/wx/StringWx.cpp b/WebCore/platform/text/wx/StringWx.cpp
index 50919c4..7f91dbf 100644
--- a/WebCore/platform/text/wx/StringWx.cpp
+++ b/WebCore/platform/text/wx/StringWx.cpp
@@ -27,6 +27,7 @@
#include "PlatformString.h"
#include "CString.h"
+#include "DeprecatedString.h"
#include "unicode/ustring.h"
#include <wx/defs.h>
@@ -87,6 +88,12 @@ String::operator wxString() const
return wxString(utf8().data(), wxConvUTF8);
}
+// DeprecatedString conversions
+DeprecatedString::operator wxString() const
+{
+ return wxString(utf8().data(), wxConvUTF8);
+}
+
}
// vim: ts=4 sw=4 et