summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-03-29 05:19:13 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 17:01:48 +0200
commit8ded5707f77f035edea57399c981fa1f99b8891e (patch)
treee7088fabee43b1c5de26c193740e971b6ff373cf /vcl
parent5bdc19ef7b62b629412ed3bfac8239fc44e35380 (diff)
uitest: use forward declarations
Change-Id: I0c2680766e914601078030856e4d4098878be9b5
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/uitest/uiobject_impl.hxx9
-rw-r--r--vcl/source/uitest/factory.cxx3
-rw-r--r--vcl/source/uitest/uiobject.cxx3
3 files changed, 11 insertions, 4 deletions
diff --git a/vcl/inc/uitest/uiobject_impl.hxx b/vcl/inc/uitest/uiobject_impl.hxx
index 4e86e34147ee..3bac973ecb58 100644
--- a/vcl/inc/uitest/uiobject_impl.hxx
+++ b/vcl/inc/uitest/uiobject_impl.hxx
@@ -9,14 +9,15 @@
#include <vcl/uitest/uiobject.hxx>
-#include <vcl/button.hxx>
-#include <vcl/dialog.hxx>
-#include <vcl/edit.hxx>
-
class TabPage;
class ComboBox;
class SpinButton;
class SpinField;
+class Edit;
+class Dialog;
+class Button;
+class CheckBox;
+class ListBox;
class WindowUIObject : public UIObject
{
diff --git a/vcl/source/uitest/factory.cxx b/vcl/source/uitest/factory.cxx
index beec04241ea8..ff5520c4b612 100644
--- a/vcl/source/uitest/factory.cxx
+++ b/vcl/source/uitest/factory.cxx
@@ -15,6 +15,9 @@
#include <vcl/combobox.hxx>
#include <vcl/spin.hxx>
#include <vcl/spinfld.hxx>
+#include <vcl/button.hxx>
+#include <vcl/dialog.hxx>
+#include <vcl/edit.hxx>
std::unique_ptr<UIObject> UITestWrapperFactory::createObject(vcl::Window* pWindow)
{
diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx
index 0d9c97a5a1b0..23122c884615 100644
--- a/vcl/source/uitest/uiobject.cxx
+++ b/vcl/source/uitest/uiobject.cxx
@@ -16,6 +16,9 @@
#include <vcl/combobox.hxx>
#include <vcl/spin.hxx>
#include <vcl/spinfld.hxx>
+#include <vcl/button.hxx>
+#include <vcl/dialog.hxx>
+#include <vcl/edit.hxx>
#include <rtl/ustrbuf.hxx>