Skip to content

Commit

Permalink
Update version number to 4.20.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-germer committed May 25, 2018
1 parent 844b262 commit 1705585
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 52 deletions.
8 changes: 5 additions & 3 deletions source/WinMIST2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include "ParameterWizard.h"
#include "ParameterWizardDoc.h"
#include "inherit.h"
#include "mist.h"

#ifdef GERMER_MODELS
#include "getmodel.h"
Expand Down Expand Up @@ -282,7 +283,8 @@ void CWinMIST2App::OnAppAbout()
"\r\n";
#endif

aboutDlg.m_text += CString("Build: ") + CString(__DATE__) + CString(" ") + CString(__TIME__);
aboutDlg.m_text += CString("Version: ") + CString(MIST_VERSION);
aboutDlg.m_text += CString("\r\nBuild: ") + CString(__DATE__) + CString(" ") + CString(__TIME__);
aboutDlg.m_text += CString("\r\nUsing: ") + Get_SCATMECH_Version().c_str();

aboutDlg.DoModal();
Expand Down Expand Up @@ -357,13 +359,13 @@ CDocument* CWinMIST2App::OpenDocumentFile(LPCTSTR lpszFileName)
void CWinMIST2App::OnHelpMistweb()
{
// TODO: Add your command handler code here
ShellExecute(NULL, "open", "http://www.nist.gov/pml/div685/grp06/scattering_mist.cfm", NULL, NULL, SW_SHOWNORMAL);
ShellExecute(NULL, "open", "https://pages.nist.gov/ScatterMIST/docs/index.htm", NULL, NULL, SW_SHOWNORMAL);
}

void CWinMIST2App::OnHelpScatmechweb()
{
// TODO: Add your command handler code here
ShellExecute(NULL, "open", "http://pml.nist.gov/Scatmech/html/frontpage.htm", NULL, NULL, SW_SHOWNORMAL);
ShellExecute(NULL, "open", "https://pages.nist.gov/SCATMECH/docs/index.htm", NULL, NULL, SW_SHOWNORMAL);
}

int CWinMIST2App::ExitInstance()
Expand Down
Loading

0 comments on commit 1705585

Please sign in to comment.