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 /editeng | |
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 'editeng')
-rw-r--r-- | editeng/source/uno/unoedhlp.cxx | 1 | ||||
-rw-r--r-- | editeng/source/uno/unoedsrc.cxx | 2 | ||||
-rw-r--r-- | editeng/source/uno/unoipset.cxx | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/editeng/source/uno/unoedhlp.cxx b/editeng/source/uno/unoedhlp.cxx index dec133314207..642489275c07 100644 --- a/editeng/source/uno/unoedhlp.cxx +++ b/editeng/source/uno/unoedhlp.cxx @@ -22,6 +22,7 @@ #include <editeng/editeng.hxx> #include <svl/itemset.hxx> +#include <osl/diagnose.h> SvxEditSourceHint::SvxEditSourceHint( sal_uLong _nId ) : diff --git a/editeng/source/uno/unoedsrc.cxx b/editeng/source/uno/unoedsrc.cxx index ac5f6a0e1040..b20565cb224d 100644 --- a/editeng/source/uno/unoedsrc.cxx +++ b/editeng/source/uno/unoedsrc.cxx @@ -21,7 +21,7 @@ #include <editeng/unoedsrc.hxx> - +#include <osl/diagnose.h> void SvxEditSource::addRange( SvxUnoTextRangeBase* ) diff --git a/editeng/source/uno/unoipset.cxx b/editeng/source/uno/unoipset.cxx index 499361a14c44..070000054569 100644 --- a/editeng/source/uno/unoipset.cxx +++ b/editeng/source/uno/unoipset.cxx @@ -27,6 +27,7 @@ #include <editeng/editids.hrc> #include <editeng/editeng.hxx> #include <svl/itempool.hxx> +#include <osl/diagnose.h> #include <algorithm> using namespace ::com::sun::star; |