diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-07-11 22:41:15 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-07-11 22:41:15 +0200 |
commit | 1f1c76a5d8e4456d844bf19400aca68900e0e878 (patch) | |
tree | 1f9d7541ece8a29c4941b386102a749ec571f437 /src | |
parent | 534cd2802f807e4ca33a8586508619e6a52c3667 (diff) |
Initial rebranding in code
Diffstat (limited to 'src')
-rw-r--r-- | src/common/ctcp.c | 4 | ||||
-rw-r--r-- | src/common/xchat.c | 6 | ||||
-rw-r--r-- | src/fe-gtk/fe-gtk.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/common/ctcp.c b/src/common/ctcp.c index 36952db7..0bf2f465 100644 --- a/src/common/ctcp.c +++ b/src/common/ctcp.c @@ -138,10 +138,10 @@ ctcp_handle (session *sess, char *to, char *nick, char *ip, if (!g_ascii_strcasecmp (msg, "VERSION") && !prefs.hidever) { #ifdef WIN32 - snprintf (outbuf, sizeof (outbuf), "VERSION XChat-WDK "PACKAGE_VERSION" [x%d] / %s", + snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" [x%d] / %s", get_cpu_arch (), get_cpu_str ()); #else - snprintf (outbuf, sizeof (outbuf), "VERSION XChat-WDK "PACKAGE_VERSION" %s", + snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" %s", get_cpu_str ()); #endif serv->p_nctcp (serv, nick, outbuf); diff --git a/src/common/xchat.c b/src/common/xchat.c index 845f262b..0849e234 100644 --- a/src/common/xchat.c +++ b/src/common/xchat.c @@ -924,13 +924,13 @@ enum_windows_impl (HWND current_window, LPARAM lParam) } GetWindowText (current_window, window_name, 10); - if (stricmp (window_name, "xchat-wdk") == 0) + if (stricmp (window_name, "hexchat") == 0) { /* use a separate if block, this way we don't have to call GetWindowModuleFileName() for each hit */ ZeroMemory (&module_path, sizeof (module_path)); GetWindowModuleFileName (current_window, module_path, sizeof (module_path)); - if (strstr (module_path, "xchat.exe")) /* We've found it, stop */ + if (strstr (module_path, "hexchat.exe")) /* We've found it, stop */ { xchat_restore_window (current_window); return FALSE; @@ -972,7 +972,7 @@ main (int argc, char *argv[]) { DWORD error; - mutex = CreateMutex (NULL, TRUE, "Local\xchat"); + mutex = CreateMutex (NULL, TRUE, "Local\hexchat"); error = GetLastError (); if (error == ERROR_ALREADY_EXISTS || mutex == NULL) diff --git a/src/fe-gtk/fe-gtk.h b/src/fe-gtk/fe-gtk.h index 8fffb3cc..f4188a01 100644 --- a/src/fe-gtk/fe-gtk.h +++ b/src/fe-gtk/fe-gtk.h @@ -1,6 +1,6 @@ #include "../../config.h" -#define DISPLAY_NAME "XChat-WDK" +#define DISPLAY_NAME "HexChat" #ifndef WIN32 #include <sys/types.h> |