summaryrefslogtreecommitdiff
path: root/charpick
diff options
context:
space:
mode:
authorinfirit <[email protected]>2013-10-19 00:26:42 +0200
committerinfirit <[email protected]>2013-10-19 10:38:02 +0200
commitc759fadd251e4a5b95e0a4b483889f654ac89d62 (patch)
tree55d2c0865ac2ceca8a494a28e87cb1a87944ab6c /charpick
parent3a822cb94c27a06bb72921edc1875689818ff0de (diff)
downloadmate-applets-c759fadd251e4a5b95e0a4b483889f654ac89d62.tar.bz2
mate-applets-c759fadd251e4a5b95e0a4b483889f654ac89d62.tar.xz
Move to gucharmap
Diffstat (limited to 'charpick')
-rw-r--r--charpick/Makefile.am4
-rw-r--r--charpick/charpick.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/charpick/Makefile.am b/charpick/Makefile.am
index 678a06f1..56d7592f 100644
--- a/charpick/Makefile.am
+++ b/charpick/Makefile.am
@@ -5,7 +5,7 @@ AM_CPPFLAGS = \
-I$(srcdir) \
-DCHARPICK_MENU_UI_DIR=\""$(uidir)"\" \
$(MATE_APPLETS4_CFLAGS) \
- $(MUCHARMAP_CFLAGS)
+ $(GUCHARMAP_CFLAGS)
libexec_PROGRAMS = charpick_applet2
@@ -15,7 +15,7 @@ charpick_applet2_SOURCES = charpick.c \
charpick_applet2_LDADD = \
$(MATE_APPLETS4_LIBS) \
- $(MUCHARMAP_LIBS)
+ $(GUCHARMAP_LIBS)
appletdir = $(datadir)/mate-panel/applets
applet_in_files = org.mate.applets.CharpickerApplet.mate-panel-applet.in
diff --git a/charpick/charpick.c b/charpick/charpick.c
index 54048794..6f5e766e 100644
--- a/charpick/charpick.c
+++ b/charpick/charpick.c
@@ -6,8 +6,8 @@
#include <string.h>
#include <mate-panel-applet.h>
#include <mate-panel-applet-gsettings.h>
-#ifdef HAVE_MUCHARMAP
-# include <mucharmap/mucharmap.h>
+#ifdef HAVE_GUCHARMAP
+# include <gucharmap/gucharmap.h>
#endif
#include "charpick.h"
@@ -457,13 +457,13 @@ build_table(charpick_data *p_curr_data)
g_utf8_strncpy (label, charlist, 1);
charlist = g_utf8_next_char (charlist);
-#ifdef HAVE_MUCHARMAP
+#ifdef HAVE_GUCHARMAP
/* TRANSLATOR: This sentance reads something like 'Insert "PILCROW SIGN"'
* hopefully, the name of the unicode character has already
* been translated.
*/
name = g_strdup_printf (_("Insert \"%s\""),
- mucharmap_get_unicode_name (g_utf8_get_char (label)));
+ gucharmap_get_unicode_name (g_utf8_get_char (label)));
#else
name = g_strdup (_("Insert special character"));
#endif