From 606d72b1feb08028ec098efbf330b39f7d9fc732 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Mon, 23 Mar 2015 21:27:18 -0700 Subject: [PATCH] UI: Don't include properties-view.hpp in header Replace header include with forward to reduce needless header includes and thus reduce compile time. --- obs/window-basic-properties.cpp | 1 + obs/window-basic-properties.hpp | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/obs/window-basic-properties.cpp b/obs/window-basic-properties.cpp index dd68df2cb..771864e3e 100644 --- a/obs/window-basic-properties.cpp +++ b/obs/window-basic-properties.cpp @@ -20,6 +20,7 @@ #include "window-basic-main.hpp" #include "qt-wrappers.hpp" #include "display-helpers.hpp" +#include "properties-view.hpp" #include #include diff --git a/obs/window-basic-properties.hpp b/obs/window-basic-properties.hpp index 31e431591..7935e9e8f 100644 --- a/obs/window-basic-properties.hpp +++ b/obs/window-basic-properties.hpp @@ -22,8 +22,7 @@ #include #include -#include "properties-view.hpp" - +class OBSPropertiesView; class OBSBasic; #include "ui_OBSBasicProperties.h"