From 827025c07b4190e00f60d466fdd98fc0261c3a53 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Fri, 9 Aug 2013 16:33:34 +0200 Subject: [PATCH] QmlDesigner.PropertyEditorView: use forward declaration This reduced dependecies. Change-Id: I064a9f4ef953196a301b4fdd194db2370efcfba1 Reviewed-by: Marco Bubke --- .../components/propertyeditor/propertyeditorview.cpp | 8 ++++---- .../components/propertyeditor/propertyeditorview.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp index 39d897a2360..efa5a3ea29b 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp @@ -29,8 +29,11 @@ #include "propertyeditorview.h" -#include +#include "propertyeditorqmlbackend.h" +#include "propertyeditorvalue.h" +#include "propertyeditortransaction.h" +#include #include #include @@ -42,9 +45,6 @@ #include #include -#include "propertyeditorvalue.h" -#include "propertyeditortransaction.h" - #include #include diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.h index 90e2e3f60c3..e2ec57e6672 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.h +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.h @@ -34,7 +34,6 @@ #include #include -#include "propertyeditorqmlbackend.h" #include "propertyeditorwidget.h" QT_BEGIN_NAMESPACE @@ -49,6 +48,7 @@ class PropertyEditorTransaction; class CollapseButton; class PropertyEditorWidget; class PropertyEditorView; +class PropertyEditorQmlBackend; class PropertyEditorView: public AbstractView {