diff options
Diffstat (limited to 'src/fe-gtk')
-rw-r--r-- | src/fe-gtk/Makefile.am | 2 | ||||
-rw-r--r-- | src/fe-gtk/fe-gtk.c | 2 | ||||
-rw-r--r-- | src/fe-gtk/pixmaps.c | 6 | ||||
-rw-r--r-- | src/fe-gtk/plugin-tray.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/fe-gtk/Makefile.am b/src/fe-gtk/Makefile.am index da36ed57..a8cbcb63 100644 --- a/src/fe-gtk/Makefile.am +++ b/src/fe-gtk/Makefile.am @@ -1,6 +1,6 @@ localedir = $(datadir)/locale -bin_PROGRAMS = xchat +bin_PROGRAMS = hexchat INCLUDES = $(GUI_CFLAGS) -DG_DISABLE_CAST_CHECKS -DLOCALEDIR=\"$(localedir)\" diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c index 88a1138c..8c7e515a 100644 --- a/src/fe-gtk/fe-gtk.c +++ b/src/fe-gtk/fe-gtk.c @@ -257,7 +257,7 @@ fe_args (int argc, char *argv[]) } } #else - printf ("%s\n", XCHATLIBDIR"/plugins"); + printf ("%s\n", HEXCHATLIBDIR"/plugins"); #endif return 0; } diff --git a/src/fe-gtk/pixmaps.c b/src/fe-gtk/pixmaps.c index 3d85c3b0..4cac3801 100644 --- a/src/fe-gtk/pixmaps.c +++ b/src/fe-gtk/pixmaps.c @@ -86,12 +86,12 @@ pixmap_load_from_file (char *filename) } #define LOADPIX(vv,pp,ff) \ - vv = gdk_pixbuf_new_from_file (XCHATSHAREDIR"/xchat/"ff, 0); \ + vv = gdk_pixbuf_new_from_file (HEXCHATSHAREDIR"/hexchat/"ff, 0); \ if (!vv) \ vv = gdk_pixbuf_new_from_inline (-1, pp, FALSE, 0); #define LOADPIX_DISKONLY(vv,ff) \ - vv = gdk_pixbuf_new_from_file (XCHATSHAREDIR"/xchat/"ff, 0); + vv = gdk_pixbuf_new_from_file (HEXCHATSHAREDIR"/hexchat/"ff, 0); #define EXT ".png" @@ -101,7 +101,7 @@ pixmaps_init (void) pix_book = gdk_pixbuf_new_from_inline (-1, bookpng, FALSE, 0); /* used in About window, tray icon and WindowManager icon. */ - LOADPIX (pix_xchat, xchatpng, "xchat"EXT); + LOADPIX (pix_xchat, hexchatpng, "hexchat"EXT); /* userlist icons, with inlined defaults */ LOADPIX (pix_hop, hoppng, "hop"EXT); diff --git a/src/fe-gtk/plugin-tray.c b/src/fe-gtk/plugin-tray.c index b9f60f8d..ff6e0e05 100644 --- a/src/fe-gtk/plugin-tray.c +++ b/src/fe-gtk/plugin-tray.c @@ -162,7 +162,7 @@ fe_tray_set_balloon (const char *title, const char *text) notify_text = strip_color (text, -1, STRIP_ALL|STRIP_ESCMARKUP); notify_title = strip_color (title, -1, STRIP_ALL); - notification = XC_NOTIFY_NEW (notify_title, notify_text, XCHATSHAREDIR"/pixmaps/xchat.png", NULL); + notification = XC_NOTIFY_NEW (notify_title, notify_text, HEXCHATSHAREDIR"/pixmaps/hexchat.png", NULL); g_free ((char *)notify_title); g_free ((char *)notify_text); |