summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-01-01 22:30:55 +0100
committerinfirit <[email protected]>2014-01-01 22:31:34 +0100
commit3580d72b1ee12a0c7c9b0985cb166d587f3eee4e (patch)
treeaebc5c1ae7b2c14bdbbda9398935496b7fbe6d57 /src
parent7ba7e03f4d5e2ecd3c77f9d9394521b7608ca05f (diff)
downloadeom-3580d72b1ee12a0c7c9b0985cb166d587f3eee4e.tar.bz2
eom-3580d72b1ee12a0c7c9b0985cb166d587f3eee4e.tar.xz
Use GETTEXT_PACKAGE instead of PACKAGE
Diffstat (limited to 'src')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index ebaa16d..838f8db 100644
--- a/src/main.c
+++ b/src/main.c
@@ -188,9 +188,9 @@ main (int argc, char **argv)
if (!g_thread_supported ())
g_thread_init (NULL);
- bindtextdomain (PACKAGE, EOM_LOCALE_DIR);
- bind_textdomain_codeset (PACKAGE, "UTF-8");
- textdomain (PACKAGE);
+ bindtextdomain (GETTEXT_PACKAGE, EOM_LOCALE_DIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+ textdomain (GETTEXT_PACKAGE);
gtk_rc_parse (EOM_DATA_DIR G_DIR_SEPARATOR_S "gtkrc");