diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-14 10:45:35 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-14 10:45:35 +1100 |
commit | 8689db0049718d203ed2900e612ef4221b09ec85 (patch) | |
tree | 4e15b316d6eab7edca06296985545d208930fb10 | |
parent | d8ecd82f310108c10ad0a2dd9586d4596dd4c96f (diff) |
vcl: remove unnecessary foward decls from fontselect.hxx
Change-Id: I6721303864c45251f50ee62515674909354cf932
-rw-r--r-- | vcl/inc/fontselect.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/inc/fontselect.hxx b/vcl/inc/fontselect.hxx index a3908fd5cb6f..fd98afcb4b1a 100644 --- a/vcl/inc/fontselect.hxx +++ b/vcl/inc/fontselect.hxx @@ -26,12 +26,10 @@ #include <unordered_map> +namespace vcl { class Font; } + class PhysicalFontFace; class LogicalFontInstance; -class ImplFontCache; -namespace vcl { class Font; } -class ConvertChar; -class OutputDevice; class Size; class FontSelectPatternAttributes : public FontAttributes @@ -66,6 +64,8 @@ public: ItalicMatrix maItalicMatrix; // Force matrix for slant }; + + class FontSelectPattern : public FontSelectPatternAttributes { public: |