diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-03-21 01:23:58 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-03-21 01:23:58 +0800 |
commit | cba3097cad7443810117bded371a2e3088a33d12 (patch) | |
tree | b4bf9ba6b6c9b5433c8ac2614694d7bf76d87ff0 /widgets/text | |
parent | 2313e47dab3e8151743138892277b08cf78034cc (diff) | |
download | gsoc2013-evolution-cba3097cad7443810117bded371a2e3088a33d12.tar gsoc2013-evolution-cba3097cad7443810117bded371a2e3088a33d12.tar.gz gsoc2013-evolution-cba3097cad7443810117bded371a2e3088a33d12.tar.bz2 gsoc2013-evolution-cba3097cad7443810117bded371a2e3088a33d12.tar.lz gsoc2013-evolution-cba3097cad7443810117bded371a2e3088a33d12.tar.xz gsoc2013-evolution-cba3097cad7443810117bded371a2e3088a33d12.tar.zst gsoc2013-evolution-cba3097cad7443810117bded371a2e3088a33d12.zip |
** Fixes bug #419524
2007-03-20 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #419524
* Include <glib/gi18n.h> instead of <libgnome/gnome-i18n.h>.
* e-util/e-xml-utils.c (e_xml_get_child_by_name_by_lang_list):
* mail/em-migrate.c (emm_setup_initial):
* shell/e-component-registry.c (query_components):
* shell/e-shell-settings-dialog.c (load_pages):
* shell/e-shell-window-commands.c (command_quick_reference):
* tools/killev.c (main):
Use g_get_language_names() instead of gnome_i18n_get_language_list().
* e-util/e-util.c: Remove e_gettext().
* e-util/Makefile.am: Remove e-i18n.h.
svn path=/trunk/; revision=33319
Diffstat (limited to 'widgets/text')
-rw-r--r-- | widgets/text/e-completion-view.c | 4 | ||||
-rw-r--r-- | widgets/text/e-entry-test.c | 2 | ||||
-rw-r--r-- | widgets/text/e-entry.c | 2 | ||||
-rw-r--r-- | widgets/text/e-text.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/widgets/text/e-completion-view.c b/widgets/text/e-completion-view.c index e7606fc805..57d02bb865 100644 --- a/widgets/text/e-completion-view.c +++ b/widgets/text/e-completion-view.c @@ -30,7 +30,7 @@ #include "table/e-table-scrolled.h" #include "table/e-table-simple.h" -#include "e-util/e-i18n.h" +#include <glib/gi18n.h> #include "e-util/e-util-marshal.h" #include "e-completion-view.h" @@ -623,7 +623,7 @@ end_completion_cb (ECompletion *completion, gpointer user_data) /* XXX toshok - we need to add sorting to this etable, through the use of undisplayed fields of all the sort keys we want to use */ static char *simple_spec = -"<ETableSpecification no-headers=\"true\" draw-grid=\"false\" cursor-mode=\"line\" alternating-row-colors=\"false\" gettext-domain=\"" E_I18N_DOMAIN "\">" +"<ETableSpecification no-headers=\"true\" draw-grid=\"false\" cursor-mode=\"line\" alternating-row-colors=\"false\" gettext-domain=\"" GETTEXT_PACKAGE "\">" " <ETableColumn model_col=\"0\" _title=\"Node\" expansion=\"1.0\" " " minimum_width=\"16\" resizable=\"true\" cell=\"string\" " " compare=\"string\"/> " diff --git a/widgets/text/e-entry-test.c b/widgets/text/e-entry-test.c index 42a24bd567..efb8d47f40 100644 --- a/widgets/text/e-entry-test.c +++ b/widgets/text/e-entry-test.c @@ -25,7 +25,7 @@ #include <gnome.h> -#include "e-util/e-i18n.h" +#include <glib/gi18n.h> #include "e-util/e-util-private.h" #include "e-entry.h" diff --git a/widgets/text/e-entry.c b/widgets/text/e-entry.c index f0653a39b6..d5f7cb4fe9 100644 --- a/widgets/text/e-entry.c +++ b/widgets/text/e-entry.c @@ -36,7 +36,7 @@ #include <libxml/parser.h> #include <libgnomecanvas/gnome-canvas.h> -#include "e-util/e-i18n.h" +#include <glib/gi18n.h> #include "e-util/e-util.h" #include "misc/e-canvas.h" #include "misc/e-canvas-utils.h" diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c index a1ad01e7c1..0ae2d2203d 100644 --- a/widgets/text/e-text.c +++ b/widgets/text/e-text.c @@ -52,7 +52,7 @@ #include "misc/e-canvas.h" #include "misc/e-canvas-utils.h" #include "misc/e-unicode.h" -#include "e-util/e-i18n.h" +#include <glib/gi18n.h> #include "e-util/e-text-event-processor-emacs-like.h" #include "e-util/e-util.h" |