From 3b9174cd9bfa9f8f4ccba6263e2d6f74f0d33b14 Mon Sep 17 00:00:00 2001 From: Mikhail Novosyolov Date: Mon, 19 Aug 2019 07:09:25 +0300 Subject: [PATCH] Fix building with wxWidgets 3.1.2 From changelog: - wx/treebook.h doesn't include wx/treectrl.h (and, via it, wx/textctrl.h) any more, include these headers explicitly from your code if necessary. --- src/prefs/PrefsDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/prefs/PrefsDialog.cpp b/src/prefs/PrefsDialog.cpp index f0c7c1634..ffd9deec1 100644 --- a/src/prefs/PrefsDialog.cpp +++ b/src/prefs/PrefsDialog.cpp @@ -34,6 +34,7 @@ #include #include +#include #include "../AudioIOBase.h" #include "../Prefs.h"