I18n fixes.
* gui/dialogs/event-page.c (summary_changed_cb): Use e_dialog_editable_get instead of gtk_editable_get_chars (we need UTF-8 string). * gui/itip-utils.c: Added missing #include <config.h> svn path=/trunk/; revision=11619
This commit is contained in:
@ -1,3 +1,14 @@
|
||||
2001-08-03 Zbigniew Chyla <cyba@gnome.pl>
|
||||
|
||||
I18n fixes.
|
||||
|
||||
* gui/dialogs/event-page.c (summary_changed_cb):
|
||||
Use e_dialog_editable_get instead of gtk_editable_get_chars (we need
|
||||
UTF-8 string).
|
||||
|
||||
* gui/itip-utils.c:
|
||||
Added missing #include <config.h>
|
||||
|
||||
2001-08-02 Jon Trowbridge <trow@ximian.com>
|
||||
|
||||
* gui/Makefile.am: Added camel dependency (now needed by ebook).
|
||||
|
||||
@ -664,7 +664,7 @@ summary_changed_cb (GtkEditable *editable, gpointer data)
|
||||
if (priv->updating)
|
||||
return;
|
||||
|
||||
summary = gtk_editable_get_chars (editable, 0, -1);
|
||||
summary = e_dialog_editable_get (editable);
|
||||
comp_editor_page_notify_summary_changed (COMP_EDITOR_PAGE (epage),
|
||||
summary);
|
||||
g_free (summary);
|
||||
|
||||
@ -21,6 +21,10 @@
|
||||
* USA
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <bonobo/bonobo-exception.h>
|
||||
#include <bonobo/bonobo-object.h>
|
||||
#include <bonobo/bonobo-object-client.h>
|
||||
|
||||
Reference in New Issue
Block a user