From 056b067f47664969b099e2e07ab9837245827b57 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Thu, 14 Jun 2007 06:34:39 +0000 Subject: [PATCH] typo fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46464 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/combobox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gtk/combobox.cpp b/src/gtk/combobox.cpp index 7fb0ce2424..bd57409bc7 100644 --- a/src/gtk/combobox.cpp +++ b/src/gtk/combobox.cpp @@ -1121,7 +1121,7 @@ void wxComboBox::Replace( long from, long to, const wxString& value ) const char *utf8 = value.utf8_str(); #else wxCharBuffer buffer(value.utf8_str()); - char char *utf8 = buffer; + const char *utf8 = buffer; #endif gtk_editable_insert_text(GTK_EDITABLE(entry), utf8, strlen(utf8), &pos); } -- 2.45.2