From: Vadim Zeitlin Date: Tue, 21 Mar 2006 13:31:35 +0000 (+0000) Subject: added wxGtkString::c_str() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/46cb4b3f8aa0e004c7b7fd5afc49e04a10d0231f added wxGtkString::c_str() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38244 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/gtk/private.h b/include/wx/gtk/private.h index bad72b53f2..2ce2865725 100644 --- a/include/wx/gtk/private.h +++ b/include/wx/gtk/private.h @@ -70,6 +70,8 @@ public: explicit wxGtkString(gchar *s) : m_str(s) { } ~wxGtkString() { g_free(m_str); } + const gchar *c_str() const { return m_str; } + operator gchar *() const { return m_str; } private: