Initial rebranding in code
This commit is contained in:
parent
534cd2802f
commit
1f1c76a5d8
@ -344,7 +344,7 @@ LRESULT CALLBACK WindowProc(HWND hWnd, UINT msg, WPARAM wparam, LPARAM lparam)
|
||||
if(msg == RegisterWindowMessage(_T("TaskbarCreated")))
|
||||
{
|
||||
char szVersion[64];
|
||||
_snprintf(szVersion, 64, "XChat-WDK [%s]", xchat_get_info(ph, "version"));
|
||||
_snprintf(szVersion, 64, "HexChat [%s]", xchat_get_info(ph, "version"));
|
||||
AddIcon(g_hXchatWnd, 1, g_hIcons[0], szVersion, (NIF_ICON | NIF_MESSAGE | NIF_TIP), WM_TRAYMSG);
|
||||
}
|
||||
}
|
||||
|
@ -116,7 +116,7 @@ int xchat_plugin_init(xchat_plugin *plugin_handle, char **plugin_name, char **pl
|
||||
/************************* Add our icon to the tray ************************************************************************/
|
||||
/***************************************************************************************************************************/
|
||||
char szVersion[64];
|
||||
_snprintf(szVersion, 64, "XChat-WDK %s", xchat_get_info(ph, "wdk_version"));
|
||||
_snprintf(szVersion, 64, "HexChat %s", xchat_get_info(ph, "wdk_version"));
|
||||
AddIcon(g_hXchatWnd, 1, g_hIcons[0], szVersion, (NIF_ICON | NIF_MESSAGE | NIF_TIP), WM_TRAYMSG);
|
||||
|
||||
/***************************************************************************************************************************/
|
||||
|
@ -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);
|
||||
|
@ -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)
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "../../config.h"
|
||||
|
||||
#define DISPLAY_NAME "XChat-WDK"
|
||||
#define DISPLAY_NAME "HexChat"
|
||||
|
||||
#ifndef WIN32
|
||||
#include <sys/types.h>
|
||||
|
Loading…
Reference in New Issue
Block a user