From 7154b092a716d4d0041a8a563294511ec9e5dbc6 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Thu, 20 Mar 2014 00:21:17 -0500 Subject: cosmetic: split PhysicalFontFace class it its own source/header oudev,2,3,4,5,6 are a dumping ground for a lot of things chipping at it one class at the time... organize the #include of the impacted source while at it. Change-Id: I57bbb1f9e3c6b2ac6b3ca127e5976bf16f3e3cf8 --- vcl/headless/svptext.cxx | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) (limited to 'vcl/headless/svptext.cxx') diff --git a/vcl/headless/svptext.cxx b/vcl/headless/svptext.cxx index f04822974a5e..7fd3cd30e587 100644 --- a/vcl/headless/svptext.cxx +++ b/vcl/headless/svptext.cxx @@ -17,40 +17,37 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sal/config.h" +#include #include +#include +#include #include #include -#include - -#include - -#include - -#include -#include #include +#include +#include -#include "vcl/sysdata.hxx" #include "generic/geninst.h" #include "generic/genpspgraphics.h" #include "generic/glyphcache.hxx" -#include "headless/svpgdi.hxx" #include "headless/svpbmp.hxx" +#include "headless/svpgdi.hxx" +#include "impfont.hxx" +#include "outfont.hxx" +#include "PhysicalFontFace.hxx" using namespace basegfx; using namespace basebmp; -class SvpGlyphPeer -: public GlyphCachePeer +class SvpGlyphPeer : public GlyphCachePeer { public: SvpGlyphPeer() {} BitmapDeviceSharedPtr GetGlyphBmp( ServerFont&, sal_GlyphId, - basebmp::Format nBmpFormat, B2IPoint& rTargetPos ); + basebmp::Format nBmpFormat, B2IPoint& rTargetPos ); protected: virtual void RemovingFont( ServerFont& ); -- cgit