svnno****@sourc*****
svnno****@sourc*****
2017年 4月 24日 (月) 20:49:55 JST
Revision: 6692 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6692 Author: doda Date: 2017-04-24 20:49:55 +0900 (Mon, 24 Apr 2017) Log Message: ----------- バルーンチップ表示非対応の OS では通知アイコンを表示しないようにした Modified Paths: -------------- trunk/teraterm/ttpcmn/ttcmn.c -------------- next part -------------- Modified: trunk/teraterm/ttpcmn/ttcmn.c =================================================================== --- trunk/teraterm/ttpcmn/ttcmn.c 2017-04-24 11:49:52 UTC (rev 6691) +++ trunk/teraterm/ttpcmn/ttcmn.c 2017-04-24 11:49:55 UTC (rev 6692) @@ -2487,6 +2487,10 @@ return; } + if (! (IsWindows2000OrLater() || IsWindowsMe())) { + return; + } + if (cv->NotifyIcon == NULL) { CreateNotifyIcon(cv); }