From 35f9e829561e20977b4cf07d90307fd78cc38f25 Mon Sep 17 00:00:00 2001 From: Kurt Kartaltepe Date: Wed, 8 Apr 2020 17:20:52 -0700 Subject: [PATCH] UI: Fix missing includes These files appeared to be dependent on their include order and were missing definitions when files were compiled in a different order. --- UI/properties-view.moc.hpp | 1 + UI/source-tree.hpp | 2 ++ UI/window-basic-stats.hpp | 1 + 3 files changed, 4 insertions(+) diff --git a/UI/properties-view.moc.hpp b/UI/properties-view.moc.hpp index a5cf36d15..39f32a77f 100644 --- a/UI/properties-view.moc.hpp +++ b/UI/properties-view.moc.hpp @@ -6,6 +6,7 @@ #include #include +#include #include #include diff --git a/UI/source-tree.hpp b/UI/source-tree.hpp index bf5569c85..32a4c5929 100644 --- a/UI/source-tree.hpp +++ b/UI/source-tree.hpp @@ -8,6 +8,8 @@ #include #include #include +#include +#include class QLabel; class QCheckBox; diff --git a/UI/window-basic-stats.hpp b/UI/window-basic-stats.hpp index 81f993d1a..d760f6491 100644 --- a/UI/window-basic-stats.hpp +++ b/UI/window-basic-stats.hpp @@ -2,6 +2,7 @@ #include #include +#include #include #include #include