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 /basic | |
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 'basic')
-rw-r--r-- | basic/source/basmgr/basicmanagerrepository.cxx | 1 | ||||
-rw-r--r-- | basic/source/comp/codegen.cxx | 1 | ||||
-rw-r--r-- | basic/source/comp/dim.cxx | 1 | ||||
-rw-r--r-- | basic/source/comp/parser.cxx | 1 | ||||
-rw-r--r-- | basic/source/comp/symtbl.cxx | 3 |
5 files changed, 7 insertions, 0 deletions
diff --git a/basic/source/basmgr/basicmanagerrepository.cxx b/basic/source/basmgr/basicmanagerrepository.cxx index d7928d883397..3f873e4e6d5c 100644 --- a/basic/source/basmgr/basicmanagerrepository.cxx +++ b/basic/source/basmgr/basicmanagerrepository.cxx @@ -41,6 +41,7 @@ #include <comphelper/documentinfo.hxx> #include <unotools/eventlisteneradapter.hxx> +#include <osl/getglobalmutex.hxx> #include <rtl/instance.hxx> #include <rtl/strbuf.hxx> diff --git a/basic/source/comp/codegen.cxx b/basic/source/comp/codegen.cxx index e0e1decaa9b3..9d8ac5762584 100644 --- a/basic/source/comp/codegen.cxx +++ b/basic/source/comp/codegen.cxx @@ -23,6 +23,7 @@ #include "image.hxx" #include <limits> #include <algorithm> +#include <osl/diagnose.h> #include <com/sun/star/script/ModuleType.hpp> // nInc is the increment size of the buffers diff --git a/basic/source/comp/dim.cxx b/basic/source/comp/dim.cxx index a838be8f0bab..2142324f4662 100644 --- a/basic/source/comp/dim.cxx +++ b/basic/source/comp/dim.cxx @@ -21,6 +21,7 @@ #include "sbcomp.hxx" #include "sbunoobj.hxx" #include <svtools/miscopt.hxx> +#include <osl/diagnose.h> #include <com/sun/star/reflection/theCoreReflection.hpp> #include <comphelper/namedvaluecollection.hxx> #include <comphelper/processfactory.hxx> diff --git a/basic/source/comp/parser.cxx b/basic/source/comp/parser.cxx index c7e122ae317f..9ce5bdb6cc8f 100644 --- a/basic/source/comp/parser.cxx +++ b/basic/source/comp/parser.cxx @@ -19,6 +19,7 @@ #include <basic/sbx.hxx> #include "sbcomp.hxx" +#include <osl/diagnose.h> #include <com/sun/star/script/ModuleType.hpp> #include <svtools/miscopt.hxx> diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx index 99e02e3b3ae5..9cef215bec82 100644 --- a/basic/source/comp/symtbl.cxx +++ b/basic/source/comp/symtbl.cxx @@ -19,6 +19,9 @@ #include "sbcomp.hxx" + +#include <osl/diagnose.h> + #include <stdio.h> #include <string.h> #include <ctype.h> |