Modified to accept and return UTF-8 string.

2001-08-23  Zbigniew Chyla  <cyba@gnome.pl>

	* e-request.c (e_request_string): Modified to accept and return UTF-8
	string.

svn path=/trunk/; revision=12442
This commit is contained in:
Zbigniew Chyla
2001-08-24 18:22:56 +00:00
committed by Ettore Perazzoli
parent 921aa25a35
commit 5461762966
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2001-08-23 Zbigniew Chyla <cyba@gnome.pl>
* e-request.c (e_request_string): Modified to accept and return UTF-8
string.
It's currently used only in shell/e-shortcuts-view.c and we need UTF-8
there.
2001-08-20 Damon Chaplin <damon@ximian.com>
* e-time-utils.c (e_time_parse_date): added comments to help

View File

@ -29,6 +29,7 @@
#include <libgnomeui/gnome-dialog.h>
#include <libgnomeui/gnome-stock.h>
#include <gal/widgets/e-unicode.h>
#include <gtk/gtklabel.h>
#include <gtk/gtkentry.h>
@ -72,7 +73,7 @@ e_request_string (GtkWindow *parent,
gtk_box_pack_start (GTK_BOX (vbox), prompt_label, TRUE, TRUE, 0);
entry = gtk_entry_new ();
gtk_entry_set_text (GTK_ENTRY (entry), default_string);
e_utf8_gtk_entry_set_text (GTK_ENTRY (entry), default_string);
gtk_entry_select_region (GTK_ENTRY (entry), 0, -1);
gtk_box_pack_start (GTK_BOX (vbox), entry, TRUE, TRUE, 0);
@ -86,7 +87,7 @@ e_request_string (GtkWindow *parent,
switch (gnome_dialog_run (GNOME_DIALOG (dialog))) {
case 0:
/* OK. */
retval = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
retval = e_utf8_gtk_entry_get_text (GTK_ENTRY (entry));
break;
case -1:
case 1: