From c0bc6b110783bdbe8d7169cab6ce4d2d4c32316d Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Fri, 23 Apr 2021 15:59:06 -0700 Subject: [PATCH] Fix compile errors on MSVC --- common/kiway.cpp | 1 + scripting/python_scripting.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/common/kiway.cpp b/common/kiway.cpp index 18a7a3baad..5581dc4a46 100644 --- a/common/kiway.cpp +++ b/common/kiway.cpp @@ -165,6 +165,7 @@ const wxString KIWAY::dso_search_path( FACE_T aFaceId ) switch( aFaceId ) { case FACE_PL_EDITOR: dirName = "pagelayout_editor"; break; + case FACE_PYTHON: dirName = "scripting"; break; default: dirName = name + 1; break; } diff --git a/scripting/python_scripting.cpp b/scripting/python_scripting.cpp index 3d7027d7b9..51984bbeb8 100644 --- a/scripting/python_scripting.cpp +++ b/scripting/python_scripting.cpp @@ -36,6 +36,7 @@ #include #include +#include #include #include #include