diff options
author | Rob Bradford <rob@linux.intel.com> | 2010-05-18 11:09:45 +0100 |
---|---|---|
committer | Rob Bradford <rob@linux.intel.com> | 2010-05-18 11:53:15 +0100 |
commit | ab223625f15bae56e5b32b4798e87cf0e4b04944 (patch) | |
tree | 3acf63b7dc1032b3f7b44a42c0a66c093670b932 /src/empathy-import-widget.c | |
parent | ab73964666777182f59203b64b8d8309b996ced0 (diff) | |
download | empathy-ab223625f15bae56e5b32b4798e87cf0e4b04944.tar.gz |
Use library i18n method for source files included in shared library
Since these files are included in the g-c-c shared module we must use the
version of the _ macro that includes the domain.
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=618969
Diffstat (limited to 'src/empathy-import-widget.c')
-rw-r--r-- | src/empathy-import-widget.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/empathy-import-widget.c b/src/empathy-import-widget.c index a5bc0ef24..09898180a 100644 --- a/src/empathy-import-widget.c +++ b/src/empathy-import-widget.c @@ -22,6 +22,8 @@ /* empathy-import-widget.c */ +#include <config.h> + #include "empathy-import-dialog.h" #include "empathy-import-widget.h" #include "empathy-import-pidgin.h" @@ -36,7 +38,7 @@ #include <telepathy-glib/account-manager.h> #include <telepathy-glib/util.h> -#include <glib/gi18n.h> +#include <glib/gi18n-lib.h> G_DEFINE_TYPE (EmpathyImportWidget, empathy_import_widget, G_TYPE_OBJECT) |