summaryrefslogtreecommitdiff
path: root/include/vcl/sysdata.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-05-23 21:13:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-05-24 20:25:39 +0200
commitb55838c8ce067898f479569e62b7b11e137885ab (patch)
tree32c755f2bc69d4e627f52419a34a036c02689327 /include/vcl/sysdata.hxx
parentdbe58407ecf6a74671e8703a57b27896409fd5af (diff)
GetSysFontData is newly unused
and thus SystemFontData Change-Id: I563a6b7c251194cd73c6b0026d4ae8485a057b28 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94740 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/sysdata.hxx')
-rw-r--r--include/vcl/sysdata.hxx29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx
index 8be99112d74b..1be73fef8856 100644
--- a/include/vcl/sysdata.hxx
+++ b/include/vcl/sysdata.hxx
@@ -185,35 +185,6 @@ struct SystemWindowData
#endif
};
-#if ENABLE_CAIRO_CANVAS
-
-struct SystemFontData
-{
-#if defined( UNX )
- void* nFontId; // native font id
- int nFontFlags; // native font flags
-#endif
- bool bFakeBold; // Does this font need faking the bold style
- bool bFakeItalic; // Does this font need faking the italic style
- bool bAntialias; // Should this font be antialiased
- bool bVerticalCharacterType; // Is the font using vertical character type
-
- SystemFontData()
- :
-#if defined( UNX )
- nFontId( nullptr ),
- nFontFlags( 0 ),
-#endif
- bFakeBold( false ),
- bFakeItalic( false ),
- bAntialias( true ),
- bVerticalCharacterType( false )
- {
- }
-};
-
-#endif // ENABLE_CAIRO_CANVAS
-
#endif // INCLUDED_VCL_SYSDATA_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */