diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-24 20:28:48 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-24 21:36:09 +1000 |
commit | 591aa6cdce8fd42ea9481b46a676316d1750eaa9 (patch) | |
tree | 71520f947240399615344b439094fd8142bfa54b /vcl | |
parent | bc5b1be216b4da3611fe1912b205c5c70bf9cde0 (diff) |
VCL: Remove unnecessary headers from outdev/font.cxx
Change-Id: I45c811b9f7c5c10fcefe0e2da809bdc5cc381de1
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/outdev/font.cxx | 54 |
1 files changed, 10 insertions, 44 deletions
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx index b83f7dfb74d7..30dad6eda84f 100644 --- a/vcl/source/outdev/font.cxx +++ b/vcl/source/outdev/font.cxx @@ -18,55 +18,29 @@ */ #include "i18nlangtag/mslangid.hxx" -#include "i18nlangtag/languagetag.hxx" - -#include "rtl/tencinfo.h" -#include "rtl/logfile.hxx" - -#include "tools/debug.hxx" -#include "tools/poly.hxx" - -#include "basegfx/polygon/b2dpolygon.hxx" -#include "basegfx/polygon/b2dpolypolygon.hxx" -#include "basegfx/matrix/b2dhommatrix.hxx" - -#include "vcl/metric.hxx" -#include "vcl/metaact.hxx" -#include "vcl/gdimtf.hxx" -#include "vcl/virdev.hxx" -#include "vcl/print.hxx" -#include "vcl/event.hxx" -#include "vcl/window.hxx" -#include "vcl/svapp.hxx" -#include "vcl/bmpacc.hxx" -#include "vcl/outdev.hxx" -#include "vcl/edit.hxx" + +#include <vcl/virdev.hxx> +#include <vcl/print.hxx> +#include <vcl/outdev.hxx> +#include <vcl/edit.hxx> #include <vcl/settings.hxx> -// declare system types in sysdata.hxx -#include <svsys.h> -#include "vcl/sysdata.hxx" -#include "vcl/unohelp.hxx" -#include "vcl/controllayout.hxx" +#include <vcl/sysdata.hxx> -#include "salgdi.hxx" #include "sallayout.hxx" #include "svdata.hxx" + #include "impfont.hxx" #include "outdata.hxx" #include "outfont.hxx" + #include "outdev.h" +#include "window.h" + #include "PhysicalFontCollection.hxx" #include "PhysicalFontFace.hxx" #include "PhysicalFontFamily.hxx" -#include "textlayout.hxx" #include "svids.hrc" -#include "window.h" - -#include "unotools/fontcvt.hxx" -#include "unotools/fontcfg.hxx" - -#include "osl/file.h" #include <config_graphite.h> #if ENABLE_GRAPHITE @@ -75,14 +49,6 @@ #include "../gdi/pdfwriter_impl.hxx" -#include "com/sun/star/beans/PropertyValues.hpp" -#include "com/sun/star/i18n/XBreakIterator.hpp" -#include "com/sun/star/i18n/WordType.hpp" -#include "com/sun/star/linguistic2/LinguServiceManager.hpp" -#include <comphelper/processfactory.hxx> - -#include "sal/alloca.h" - #include <cmath> #include <cstring> |