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:
Chyla Zbigniew
2001-08-03 18:39:38 +00:00
parent 733175aaec
commit bbe59ab0ae
3 changed files with 16 additions and 1 deletions

View File

@ -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).

View File

@ -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);

View File

@ -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>