Fix mixed line endings

This commit is contained in:
Zheng, Lei
2022-04-26 21:45:10 +08:00
committed by Chris Hennes
parent be31116b61
commit 8bec44934b
66 changed files with 344 additions and 344 deletions

View File

@@ -623,11 +623,11 @@ bool PythonEditorView::onMsg(const char* pMsg,const char** ppReturn)
*/
bool PythonEditorView::onHasMsg(const char* pMsg) const
{
if (strcmp(pMsg,"Run")==0)
if (strcmp(pMsg,"Run")==0)
return true;
if (strcmp(pMsg,"StartDebug")==0)
if (strcmp(pMsg,"StartDebug")==0)
return true;
if (strcmp(pMsg,"ToggleBreakpoint")==0)
if (strcmp(pMsg,"ToggleBreakpoint")==0)
return true;
return EditorView::onHasMsg(pMsg);
}