Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/ttpcmn/ttcmn.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9337 by zmatsuo, Sun Aug 1 05:36:29 2021 UTC revision 9342 by zmatsuo, Sun Aug 1 15:32:15 2021 UTC
# Line 161  void WINAPI RestartTeraTerm(HWND hwnd, P Line 161  void WINAPI RestartTeraTerm(HWND hwnd, P
161                  NULL, L"Tera Term: Configuration Warning",                  NULL, L"Tera Term: Configuration Warning",
162                  "MSG_TT_TAKE_EFFECT",                  "MSG_TT_TAKE_EFFECT",
163                  L"This option takes effect the next time a session is started.\n"                  L"This option takes effect the next time a session is started.\n"
164                  L"Are you sure that you want to relaunch Tera Term?"                  L"Are you sure that you want to relaunch Tera Term?",
165                    MB_YESNO | MB_ICONEXCLAMATION | MB_DEFBUTTON2
166          };          };
167          ret = TTMessageBoxW(hwnd, &info, MB_YESNO | MB_ICONEXCLAMATION | MB_DEFBUTTON2, ts->UILanguageFile);          ret = TTMessageBoxA(hwnd, &info, ts->UILanguageFile);
168          if (ret != IDYES)          if (ret != IDYES)
169                  return;                  return;
170    
# Line 515  void WINAPI OpenHelp(UINT Command, DWORD Line 516  void WINAPI OpenHelp(UINT Command, DWORD
516                  static const TTMessageBoxInfoW info = {                  static const TTMessageBoxInfoW info = {
517                          "Tera Term",                          "Tera Term",
518                          NULL, L"Tera Term: HTML help",                          NULL, L"Tera Term: HTML help",
519                          "MSG_OPENHELP_ERROR", L"Can't open HTML help file(%s)." };                          "MSG_OPENHELP_ERROR", L"Can't open HTML help file(%s).",
520                  TTMessageBoxW(HWin, &info, MB_OK | MB_ICONERROR, UILanguageFile, HelpFN);                          MB_OK | MB_ICONERROR };
521                    TTMessageBoxA(HWin, &info, UILanguageFile, HelpFN);
522          }          }
523          free(HelpFN);          free(HelpFN);
524  }  }

Legend:
Removed from v.9337  
changed lines
  Added in v.9342

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26