1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Changed default title bar format to host.name - PuTTY

[originally from svn r221]
This commit is contained in:
Owen Dunn 1999-09-20 15:58:50 +00:00
parent b3efa01293
commit 27acfb1639

View File

@ -267,7 +267,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
return 0;
}
window_name = icon_name = NULL;
sprintf(msg, "PuTTY: %s", realhost);
sprintf(msg, "%s - PuTTY", realhost);
set_title (msg);
set_icon (msg);
}