From 53a4f68cb2d5c44bc1cd4b95feb0459ce1e16723 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Fri, 25 Dec 2020 12:16:06 +0100 Subject: [PATCH] wxwidgets.cfg: Added support for more interface, found by daca@home --- cfg/wxwidgets.cfg | 22 ++++++++++++++++++++++ lib/importproject.cpp | 3 ++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/cfg/wxwidgets.cfg b/cfg/wxwidgets.cfg index df44c8265..8a50db972 100644 --- a/cfg/wxwidgets.cfg +++ b/cfg/wxwidgets.cfg @@ -7751,12 +7751,34 @@ false + + + + + false + + + + + + + + false + + + + + + + + false + diff --git a/lib/importproject.cpp b/lib/importproject.cpp index 580d5995d..64f978485 100644 --- a/lib/importproject.cpp +++ b/lib/importproject.cpp @@ -239,7 +239,8 @@ static std::string readUntil(const std::string &command, std::string::size_type return ret; } -static std::string unescape(const std::string &in) { +static std::string unescape(const std::string &in) +{ std::string out; bool escape = false; for (char c: in) {