We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89bd8d3 commit 25d7801Copy full SHA for 25d7801
LiteEditor/manager.cpp
@@ -1751,7 +1751,7 @@ void Manager::ExecuteNoDebug(const wxString& projectName)
1751
{
1752
int i = m_filename.Find('.', true);
1753
wxString strExe = (i < 0 ? m_filename : m_filename.Mid(0, i))
1754
-#if IS_WINDOWS
+#if defined(__WXMSW__)
1755
+ _T(".exe")
1756
#endif
1757
;
Plugin/compile_request.cpp
@@ -100,7 +100,7 @@ void CompileRequest::Process(IManager* manager)
100
101
int i = m_fileName.Find('.', true);
102
wxString strExe = (i < 0 ? m_fileName : m_fileName.Mid(0, i));
103
104
strExe += _T(".exe");
105
106
0 commit comments