summaryrefslogtreecommitdiff
path: root/vcl/source/font
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-23 22:28:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-23 22:45:47 +0200
commitca39dddb8b3c01ff1d8a4cf2961c1b61563397a1 (patch)
treee9f9103fe3045cd56e7a6fc1f19afba3d064bdce /vcl/source/font
parente279245767050c8ca9743b33ab395cb67dd9a63c (diff)
loplugin:includeform: vcl
Change-Id: Id7dea3917740aaf4db8dada5e2bea6e117d714ea
Diffstat (limited to 'vcl/source/font')
-rw-r--r--vcl/source/font/PhysicalFontCollection.cxx4
-rw-r--r--vcl/source/font/PhysicalFontFace.cxx6
-rw-r--r--vcl/source/font/PhysicalFontFamily.cxx4
-rw-r--r--vcl/source/font/font.cxx8
-rw-r--r--vcl/source/font/fontattributes.cxx6
-rw-r--r--vcl/source/font/fontcache.cxx10
-rw-r--r--vcl/source/font/fontinstance.cxx4
-rw-r--r--vcl/source/font/fontmetric.cxx8
-rw-r--r--vcl/source/font/fontselect.cxx2
9 files changed, 26 insertions, 26 deletions
diff --git a/vcl/source/font/PhysicalFontCollection.cxx b/vcl/source/font/PhysicalFontCollection.cxx
index 869578425aef..42fe0707134b 100644
--- a/vcl/source/font/PhysicalFontCollection.cxx
+++ b/vcl/source/font/PhysicalFontCollection.cxx
@@ -24,8 +24,8 @@
#include <unotools/configmgr.hxx>
#include <unotools/fontdefs.hxx>
-#include "outdev.h"
-#include "PhysicalFontCollection.hxx"
+#include <outdev.h>
+#include <PhysicalFontCollection.hxx>
static ImplFontAttrs lcl_IsCJKFont( const OUString& rFontName )
{
diff --git a/vcl/source/font/PhysicalFontFace.cxx b/vcl/source/font/PhysicalFontFace.cxx
index 044cd36063da..dc911643f016 100644
--- a/vcl/source/font/PhysicalFontFace.cxx
+++ b/vcl/source/font/PhysicalFontFace.cxx
@@ -21,10 +21,10 @@
#include <tools/fontenum.hxx>
#include <unotools/fontdefs.hxx>
-#include "fontinstance.hxx"
-#include "fontattributes.hxx"
+#include <fontinstance.hxx>
+#include <fontattributes.hxx>
-#include "PhysicalFontFace.hxx"
+#include <PhysicalFontFace.hxx>
PhysicalFontFace::PhysicalFontFace( const FontAttributes& rDFA )
: FontAttributes( rDFA )
diff --git a/vcl/source/font/PhysicalFontFamily.cxx b/vcl/source/font/PhysicalFontFamily.cxx
index 5381e29e175e..81fa20e8f17e 100644
--- a/vcl/source/font/PhysicalFontFamily.cxx
+++ b/vcl/source/font/PhysicalFontFamily.cxx
@@ -20,8 +20,8 @@
#include <rtl/ustring.hxx>
#include <unotools/fontdefs.hxx>
-#include "outdev.h"
-#include "PhysicalFontCollection.hxx"
+#include <outdev.h>
+#include <PhysicalFontCollection.hxx>
void PhysicalFontFamily::CalcType( ImplFontAttrs& rType, FontWeight& rWeight, FontWidth& rWidth,
FontFamily eFamily, const utl::FontNameAttr* pFontAttr )
diff --git a/vcl/source/font/font.cxx b/vcl/source/font/font.cxx
index 3214652064f4..557984fe4e57 100644
--- a/vcl/source/font/font.cxx
+++ b/vcl/source/font/font.cxx
@@ -26,10 +26,10 @@
#include <vcl/font.hxx>
-#include "impfont.hxx"
-#include "fontinstance.hxx"
-#include "fontattributes.hxx"
-#include "sft.hxx"
+#include <impfont.hxx>
+#include <fontinstance.hxx>
+#include <fontattributes.hxx>
+#include <sft.hxx>
#include <algorithm>
diff --git a/vcl/source/font/fontattributes.cxx b/vcl/source/font/fontattributes.cxx
index 890f4f20b2d8..56c28fc21e2a 100644
--- a/vcl/source/font/fontattributes.cxx
+++ b/vcl/source/font/fontattributes.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sallayout.hxx"
-#include "svdata.hxx"
+#include <sallayout.hxx>
+#include <svdata.hxx>
-#include "fontattributes.hxx"
+#include <fontattributes.hxx>
FontAttributes::FontAttributes()
: meWeight( WEIGHT_DONTKNOW ),
diff --git a/vcl/source/font/fontcache.cxx b/vcl/source/font/fontcache.cxx
index 6b576999507b..42db74f434d8 100644
--- a/vcl/source/font/fontcache.cxx
+++ b/vcl/source/font/fontcache.cxx
@@ -17,12 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "svdata.hxx"
+#include <svdata.hxx>
-#include "fontinstance.hxx"
-#include "PhysicalFontCollection.hxx"
-#include "PhysicalFontFace.hxx"
-#include "PhysicalFontFamily.hxx"
+#include <fontinstance.hxx>
+#include <PhysicalFontCollection.hxx>
+#include <PhysicalFontFace.hxx>
+#include <PhysicalFontFamily.hxx>
size_t ImplFontCache::IFSD_Hash::operator()( const FontSelectPattern& rFSD ) const
{
diff --git a/vcl/source/font/fontinstance.cxx b/vcl/source/font/fontinstance.cxx
index 04d1061296da..6d566264bffc 100644
--- a/vcl/source/font/fontinstance.cxx
+++ b/vcl/source/font/fontinstance.cxx
@@ -18,8 +18,8 @@
*/
-#include "svdata.hxx"
-#include "fontinstance.hxx"
+#include <svdata.hxx>
+#include <fontinstance.hxx>
// extend std namespace to add custom hash needed for LogicalFontInstance
diff --git a/vcl/source/font/fontmetric.cxx b/vcl/source/font/fontmetric.cxx
index 8dfb4cfbb1ad..d2de3917604e 100644
--- a/vcl/source/font/fontmetric.cxx
+++ b/vcl/source/font/fontmetric.cxx
@@ -21,10 +21,10 @@
#include <vcl/fontcharmap.hxx>
#include <vcl/metric.hxx>
-#include "impfontmetric.hxx"
-#include "impfontmetricdata.hxx"
-#include "PhysicalFontFace.hxx"
-#include "sft.hxx"
+#include <impfontmetric.hxx>
+#include <impfontmetricdata.hxx>
+#include <PhysicalFontFace.hxx>
+#include <sft.hxx>
#include <vector>
#include <set>
diff --git a/vcl/source/font/fontselect.cxx b/vcl/source/font/fontselect.cxx
index 062261263409..cefdcb178b7a 100644
--- a/vcl/source/font/fontselect.cxx
+++ b/vcl/source/font/fontselect.cxx
@@ -20,7 +20,7 @@
#include <sal/config.h>
#include <PhysicalFontFace.hxx>
-#include "svdata.hxx"
+#include <svdata.hxx>
// These mustn't conflict with font name lists which use ; and ,
const char FontSelectPatternAttributes::FEAT_PREFIX = ':';