diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-11-11 13:51:50 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-11-11 13:51:50 +0100 |
commit | 348c6ba919d3dc28c669984890e5d1ac605e289b (patch) | |
tree | 8b740adc468dc3d07d5702bae35dc6d61c448916 | |
parent | 4c1f2b93d06f2dd776b44a83aeacc1e9aa996621 (diff) |
Rebranding
-rw-r--r-- | plugins/perl/perl.c | 2 | ||||
-rw-r--r-- | plugins/python/python.c | 2 | ||||
-rw-r--r-- | src/common/text.c | 4 | ||||
-rw-r--r-- | src/fe-gtk/chanlist.c | 2 | ||||
-rw-r--r-- | src/fe-gtk/gtkutil.c | 2 | ||||
-rw-r--r-- | src/fe-gtk/maingui.c | 6 |
6 files changed, 9 insertions, 9 deletions
diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c index 2b7c073b..321f8d48 100644 --- a/plugins/perl/perl.c +++ b/plugins/perl/perl.c @@ -1350,7 +1350,7 @@ perl_init (void) char *perl_args[] = { "", "-e", "0", "-w" }; char *env[] = { "" }; static const char xchat_definitions[] = { - /* Redefine the $SIG{__WARN__} handler to have XChat + /* Redefine the $SIG{__WARN__} handler to have HexChat printing warnings in the main window. (TheHobbit) */ #include "xchat.pm.h" }; diff --git a/plugins/python/python.c b/plugins/python/python.c index 32acd522..d65efec2 100644 --- a/plugins/python/python.c +++ b/plugins/python/python.c @@ -537,7 +537,7 @@ Callback_Print(char *word[], void *userdata) /* Cut off the message identifier. */ word += 1; - /* XChat doesn't provide a word_eol for print events, so we + /* HexChat doesn't provide a word_eol for print events, so we * build our own here. */ while (word[listsize] && word[listsize][0]) listsize++; diff --git a/src/common/text.c b/src/common/text.c index 65b3a47d..3801d072 100644 --- a/src/common/text.c +++ b/src/common/text.c @@ -1609,7 +1609,7 @@ pevent_make_pntevts () if (pevt_build_string (pntevts_text[i], &(pntevts[i]), &m) != 0) { fprintf (stderr, - "XChat CRITICAL *** default event text failed to build!\n"); + "HexChat CRITICAL *** default event text failed to build!\n"); abort (); } } @@ -1847,7 +1847,7 @@ format_event (session *sess, int index, char **args, char *o, int sizeofo, unsig if (a > numargs) { fprintf (stderr, - "XChat DEBUG: display_event: arg > numargs (%d %d %s)\n", + "HexChat DEBUG: display_event: arg > numargs (%d %d %s)\n", a, numargs, i); break; } diff --git a/src/fe-gtk/chanlist.c b/src/fe-gtk/chanlist.c index 5b9064cf..ac44bdb1 100644 --- a/src/fe-gtk/chanlist.c +++ b/src/fe-gtk/chanlist.c @@ -499,7 +499,7 @@ chanlist_filereq_done (server *serv, char *file) if (fh == -1) return; - snprintf (buf, sizeof buf, "XChat Channel List: %s - %s\n", + snprintf (buf, sizeof buf, "HexChat Channel List: %s - %s\n", serv->servername, ctime (&t)); write (fh, buf, strlen (buf)); diff --git a/src/fe-gtk/gtkutil.c b/src/fe-gtk/gtkutil.c index fa88ac79..a3ef1396 100644 --- a/src/fe-gtk/gtkutil.c +++ b/src/fe-gtk/gtkutil.c @@ -652,7 +652,7 @@ gtkutil_window_new (char *title, char *role, int width, int height, int flags) win = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtkutil_set_icon (win); #ifdef WIN32 - gtk_window_set_wmclass (GTK_WINDOW (win), "XChat", "xchat"); + gtk_window_set_wmclass (GTK_WINDOW (win), "HexChat", "hexchat"); #endif gtk_window_set_title (GTK_WINDOW (win), title); gtk_window_set_default_size (GTK_WINDOW (win), width, height); diff --git a/src/fe-gtk/maingui.c b/src/fe-gtk/maingui.c index 96ac5452..886eaf2a 100644 --- a/src/fe-gtk/maingui.c +++ b/src/fe-gtk/maingui.c @@ -2996,10 +2996,10 @@ mg_create_topwindow (session *sess) GtkWidget *table; if (sess->type == SESS_DIALOG) - win = gtkutil_window_new ("XChat", NULL, + win = gtkutil_window_new ("HexChat", NULL, prefs.hex_gui_dialog_width, prefs.hex_gui_dialog_height, 0); else - win = gtkutil_window_new ("XChat", NULL, + win = gtkutil_window_new ("HexChat", NULL, prefs.hex_gui_win_width, prefs.hex_gui_win_height, 0); sess->gui->window = win; @@ -3097,7 +3097,7 @@ mg_create_tabwindow (session *sess) GtkWidget *win; GtkWidget *table; - win = gtkutil_window_new ("XChat", NULL, prefs.hex_gui_win_width, + win = gtkutil_window_new ("HexChat", NULL, prefs.hex_gui_win_width, prefs.hex_gui_win_height, 0); sess->gui->window = win; gtk_window_move (GTK_WINDOW (win), prefs.hex_gui_win_left, |