From f227805b7f8b3da259b57b92e77df4c4ff5885f8 Mon Sep 17 00:00:00 2001 From: garakmon Date: Mon, 25 Jun 2018 10:25:39 -0400 Subject: [PATCH] fixing build errors Are these only present on non-Windows computers? --- editor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/editor.cpp b/editor.cpp index f32e405f..8c8d7c0f 100755 --- a/editor.cpp +++ b/editor.cpp @@ -2,6 +2,7 @@ #include #include #include +#include Editor::Editor(Ui::MainWindow* ui) { @@ -249,7 +250,7 @@ void Editor::setConnectionEditControlsEnabled(bool enabled) { ui->spinBox_ConnectionOffset->setEnabled(enabled); if (!enabled) { - setConnectionEditControlValues(false); + setConnectionEditControlValues(0); } }