// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////// */
+#ifdef __VMS
+#include <types.h>
+typedef pid_t GPid;
+#define G_GNUC_INTERNAL
+#define GSEAL(x) x
+#endif
+
#include "wx/gtk/treeentry_gtk.h"
/*
void gtk_tree_entry_set_label (GtkTreeEntry* entry, const gchar* label)
{
g_assert(GTK_IS_TREE_ENTRY(entry));
+ gchar *temp;
/* free previous if it exists */
if(entry->label)
}
entry->label = g_strdup(label);
- entry->collate_key = g_utf8_collate_key(label, -1); /* -1 == null terminated */
+ temp = g_utf8_casefold(label, -1); /* -1 == null terminated */
+ entry->collate_key = g_utf8_collate_key(temp, -1); /* -1 == null terminated */
+ g_free( temp );
}
void gtk_tree_entry_set_userdata (GtkTreeEntry* entry, gpointer userdata)