File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -896,6 +896,7 @@ bool CodeLiteApp::IsSingleInstance(const wxCmdLineParser& m_parser)
896896 return true ;
897897}
898898
899+ #ifdef __WXMAC__
899900void CodeLiteApp::MacOpenFile (const wxString& fileName)
900901{
901902 switch (FileExtManager::GetType (fileName)) {
@@ -907,6 +908,7 @@ void CodeLiteApp::MacOpenFile(const wxString& fileName)
907908 break ;
908909 }
909910}
911+ #endif
910912
911913void CodeLiteApp::MSWReadRegistry ()
912914{
Original file line number Diff line number Diff line change @@ -49,7 +49,9 @@ class CodeLiteApp : public wxApp
4949 void SetParserPaths (const wxArrayString& parserPaths) { this ->m_parserPaths = parserPaths; }
5050 const wxArrayString& GetParserPaths () const { return m_parserPaths; }
5151
52+ #ifdef __WXMAC__
5253 void MacOpenFile (const wxString& fileName) override ;
54+ #endif
5355
5456 void SetStartedInDebuggerMode (bool startedInDebuggerMode) { this ->m_startedInDebuggerMode = startedInDebuggerMode; }
5557 bool IsStartedInDebuggerMode () const { return m_startedInDebuggerMode; }
You can’t perform that action at this time.
0 commit comments