MCPcopy Create free account
hub / github.com/agraef/pure-lang / OnScriptPath

Method OnScriptPath

purepad/MainFrm.cpp:911–923  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

909}
910
911void CMainFrame::OnScriptPath()
912{
913 CQPathDlg dlg;
914 dlg.m_strPath = m_strQPATH;
915 if (dlg.DoModal() == IDOK)
916 {
917 m_strQPATH = dlg.m_strPath;
918 CString set_qpath;
919 set_qpath.Format("QPATH=%s", m_strQPATH);
920 if (_putenv(set_qpath))
921 AfxMessageBox(IDS_ENV_FULL);
922 }
923}
924
925void CMainFrame::OnScriptPrompt()
926{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected