diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-14 22:52:35 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-17 11:06:53 +0100 |
commit | 6a0fe37dec107392fbe468a35b89071b9a93d2c1 (patch) | |
tree | 4334feae68fa1ddc1ef293cd46ef483f44081c1c /forms | |
parent | 30f3b36e07ce37a3fe1909fb4b1419a00d2fdd81 (diff) |
sal: clean up public headers with include-what-you-use
Sadly cannot forward declare "struct {...} TimeValue;".
rtl/(u)?string.hxx still include sal/log.hxx but removing osl/diagnose.h
was painful enough for now...
Change-Id: Id41e17f3870c4f24c53ce7b11f2c40a3d14d1f05
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/helper/controlfeatureinterception.cxx | 1 | ||||
-rw-r--r-- | forms/source/helper/formnavigation.cxx | 2 | ||||
-rw-r--r-- | forms/source/xforms/NameContainer.hxx | 1 | ||||
-rw-r--r-- | forms/source/xforms/computedexpression.cxx | 2 | ||||
-rw-r--r-- | forms/source/xforms/convert.cxx | 1 | ||||
-rw-r--r-- | forms/source/xforms/enumeration.cxx | 2 | ||||
-rw-r--r-- | forms/source/xforms/resourcehelper.cxx | 1 | ||||
-rw-r--r-- | forms/source/xforms/submission/replace.cxx | 1 |
8 files changed, 10 insertions, 1 deletions
diff --git a/forms/source/helper/controlfeatureinterception.cxx b/forms/source/helper/controlfeatureinterception.cxx index 18904ea007bc..a341316574ba 100644 --- a/forms/source/helper/controlfeatureinterception.cxx +++ b/forms/source/helper/controlfeatureinterception.cxx @@ -19,6 +19,7 @@ #include "controlfeatureinterception.hxx" #include "urltransformer.hxx" +#include <osl/diagnose.h> namespace frm diff --git a/forms/source/helper/formnavigation.cxx b/forms/source/helper/formnavigation.cxx index 1d647d74eb48..b3ad06581eef 100644 --- a/forms/source/helper/formnavigation.cxx +++ b/forms/source/helper/formnavigation.cxx @@ -25,7 +25,7 @@ #include <com/sun/star/form/runtime/FormFeature.hpp> #include <tools/debug.hxx> - +#include <osl/diagnose.h> namespace frm diff --git a/forms/source/xforms/NameContainer.hxx b/forms/source/xforms/NameContainer.hxx index 7d1b63bece01..9f70e3cddf2f 100644 --- a/forms/source/xforms/NameContainer.hxx +++ b/forms/source/xforms/NameContainer.hxx @@ -31,6 +31,7 @@ #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/RuntimeException.hpp> #include <com/sun/star/uno/Type.hxx> +#include <osl/diagnose.h> typedef cppu::WeakImplHelper1< com::sun::star::container::XNameContainer diff --git a/forms/source/xforms/computedexpression.cxx b/forms/source/xforms/computedexpression.cxx index 4dd5e59c2014..d51e71f8bed9 100644 --- a/forms/source/xforms/computedexpression.cxx +++ b/forms/source/xforms/computedexpression.cxx @@ -35,6 +35,8 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/util/SearchAlgorithms.hpp> +#include <osl/diagnose.h> + #include <unotools/textsearch.hxx> #include <comphelper/processfactory.hxx> diff --git a/forms/source/xforms/convert.cxx b/forms/source/xforms/convert.cxx index ddaeafa8d8b1..4dee77454adc 100644 --- a/forms/source/xforms/convert.cxx +++ b/forms/source/xforms/convert.cxx @@ -26,6 +26,7 @@ #include <o3tl/compat_functional.hxx> #include <rtl/math.hxx> #include <rtl/ustrbuf.hxx> +#include <osl/diagnose.h> #include <tools/date.hxx> #include <com/sun/star/uno/Type.hxx> #include <com/sun/star/xsd/WhiteSpaceTreatment.hpp> diff --git a/forms/source/xforms/enumeration.cxx b/forms/source/xforms/enumeration.cxx index 2ae94088ca52..50f9f3c972a8 100644 --- a/forms/source/xforms/enumeration.cxx +++ b/forms/source/xforms/enumeration.cxx @@ -20,6 +20,8 @@ #include "enumeration.hxx" +#include <osl/diagnose.h> + #include <com/sun/star/container/NoSuchElementException.hpp> #include <com/sun/star/container/XIndexAccess.hpp> #include <com/sun/star/lang/WrappedTargetException.hpp> diff --git a/forms/source/xforms/resourcehelper.cxx b/forms/source/xforms/resourcehelper.cxx index b6641a0e6b4d..a0614572db5f 100644 --- a/forms/source/xforms/resourcehelper.cxx +++ b/forms/source/xforms/resourcehelper.cxx @@ -21,6 +21,7 @@ #include "resourcehelper.hxx" #include "frm_resource.hxx" +#include <osl/diagnose.h> #include <rtl/ustring.hxx> diff --git a/forms/source/xforms/submission/replace.cxx b/forms/source/xforms/submission/replace.cxx index 2c2f670cdbce..0abdab0c8dcd 100644 --- a/forms/source/xforms/submission/replace.cxx +++ b/forms/source/xforms/submission/replace.cxx @@ -21,6 +21,7 @@ #include "submission.hxx" #include "serialization_app_xml.hxx" +#include <osl/diagnose.h> #include <rtl/ustring.hxx> #include <rtl/string.hxx> |