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 /idl | |
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 'idl')
-rw-r--r-- | idl/source/objects/bastype.cxx | 1 | ||||
-rw-r--r-- | idl/source/objects/object.cxx | 1 | ||||
-rw-r--r-- | idl/source/objects/slot.cxx | 1 | ||||
-rw-r--r-- | idl/source/prj/command.cxx | 4 |
4 files changed, 6 insertions, 1 deletions
diff --git a/idl/source/objects/bastype.cxx b/idl/source/objects/bastype.cxx index f83f901b17de..fc9d3b8a8cd8 100644 --- a/idl/source/objects/bastype.cxx +++ b/idl/source/objects/bastype.cxx @@ -25,6 +25,7 @@ #include <globals.hxx> #include <hash.hxx> #include <database.hxx> +#include <osl/diagnose.h> static bool ReadRangeSvIdl( SvStringHashEntry * pName, SvTokenStream & rInStm, sal_uLong nMin, sal_uLong nMax, sal_uLong* pValue ) diff --git a/idl/source/objects/object.cxx b/idl/source/objects/object.cxx index 6af559ca757b..96bd62e91794 100644 --- a/idl/source/objects/object.cxx +++ b/idl/source/objects/object.cxx @@ -22,6 +22,7 @@ #include <stdio.h> #include <rtl/strbuf.hxx> +#include <osl/diagnose.h> #include <object.hxx> #include <globals.hxx> diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index 023a92622118..f0853a7e86f1 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -21,6 +21,7 @@ #include <ctype.h> #include <stdio.h> #include <rtl/strbuf.hxx> +#include <osl/diagnose.h> #include <tools/debug.hxx> #include <slot.hxx> #include <globals.hxx> diff --git a/idl/source/prj/command.cxx b/idl/source/prj/command.cxx index 465cbfcf7bd6..6e1972799f68 100644 --- a/idl/source/prj/command.cxx +++ b/idl/source/prj/command.cxx @@ -17,16 +17,18 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <ctype.h> +#include <osl/diagnose.h> + #include <command.hxx> #include <globals.hxx> #include <database.hxx> -#include "sal/config.h" char const * SyntaxStrings[] = { "basic-type:", |