diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-10-22 13:14:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-10-22 13:14:43 +0200 |
commit | f5fc81616ccf45edd180cfb8c7002eb50284f90d (patch) | |
tree | a63f9a723a5b99556f88c5be4f3e5b6689405b57 | |
parent | 294c80f1cd8279f9ef239b8251b8d4c51284e63d (diff) |
Avoid unnecessary #include
Change-Id: I6ec5de40ce2f4cbcce751dcae16dae60abbc1a37
-rw-r--r-- | cui/source/options/personalization.cxx | 1 | ||||
-rw-r--r-- | include/vcl/builder.hxx | 2 | ||||
-rw-r--r-- | vcl/source/window/builder.cxx | 1 | ||||
-rw-r--r-- | vcl/source/window/window.cxx | 2 |
4 files changed, 4 insertions, 2 deletions
diff --git a/cui/source/options/personalization.cxx b/cui/source/options/personalization.cxx index 5f02689b955c..5399dab23768 100644 --- a/cui/source/options/personalization.cxx +++ b/cui/source/options/personalization.cxx @@ -18,6 +18,7 @@ #include <com/sun/star/beans/XPropertySet.hpp> #include <osl/file.hxx> #include <rtl/bootstrap.hxx> +#include <rtl/strbuf.hxx> #include <tools/urlobj.hxx> #include <vcl/edit.hxx> #include <vcl/msgbox.hxx> diff --git a/include/vcl/builder.hxx b/include/vcl/builder.hxx index c314134ea787..9d952c063e26 100644 --- a/include/vcl/builder.hxx +++ b/include/vcl/builder.hxx @@ -16,7 +16,6 @@ #include <tools/fldunit.hxx> #include <vcl/dllapi.h> #include <vcl/window.hxx> -#include <xmlreader/xmlreader.hxx> #include <map> #include <set> #include <stack> @@ -39,6 +38,7 @@ class DateField; class TimeField; class VclExpander; class VclMultiLineEdit; +namespace xmlreader { class XmlReader; } class VCL_DLLPUBLIC VclBuilder: private boost::noncopyable { diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx index e534e414a778..e1e70c603300 100644 --- a/vcl/source/window/builder.cxx +++ b/vcl/source/window/builder.cxx @@ -45,6 +45,7 @@ #include <svdata.hxx> #include <svids.hrc> #include <window.h> +#include <xmlreader/xmlreader.hxx> using namespace com::sun::star; diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index f773bc2a5f05..8c1fe90d5614 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -18,7 +18,7 @@ */ #include <config_features.h> - +#include <rtl/strbuf.hxx> #include <tools/rc.h> #include <sal/types.h> |