]> git.saurik.com Git - wxWidgets.git/commitdiff
Another Unicode fix.
authorOve Kaaven <ovek@arcticnet.no>
Thu, 22 Apr 1999 22:39:31 +0000 (22:39 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Thu, 22 Apr 1999 22:39:31 +0000 (22:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2261 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/listbox.cpp
src/gtk1/listbox.cpp

index 402a02c244f38b11d08b8de081939ca410964059..e20908585c2d0eb6e17acda08293a000e122ba03 100644 (file)
@@ -774,7 +774,7 @@ void wxListBox::ApplyToolTip( GtkTooltips *tips, const wxChar *tip )
     GList *child = m_list->children;
     while (child)
     {
-        gtk_tooltips_set_tip( tips, GTK_WIDGET( child->data ), tip, (gchar*) NULL );
+        gtk_tooltips_set_tip( tips, GTK_WIDGET( child->data ), wxConv_local.cWX2MB(tip), (gchar*) NULL );
         child = child->next;
     }
 }
index 402a02c244f38b11d08b8de081939ca410964059..e20908585c2d0eb6e17acda08293a000e122ba03 100644 (file)
@@ -774,7 +774,7 @@ void wxListBox::ApplyToolTip( GtkTooltips *tips, const wxChar *tip )
     GList *child = m_list->children;
     while (child)
     {
-        gtk_tooltips_set_tip( tips, GTK_WIDGET( child->data ), tip, (gchar*) NULL );
+        gtk_tooltips_set_tip( tips, GTK_WIDGET( child->data ), wxConv_local.cWX2MB(tip), (gchar*) NULL );
         child = child->next;
     }
 }