diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-01-08 17:00:05 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-01-09 10:05:04 +0100 |
commit | c597c5f12db1b76e55c6f110b231cf181959fa61 (patch) | |
tree | c37cdba8cf5ff0d43178715e8643285f93163954 /vcl/source/fontsubset/cff.cxx | |
parent | 71da7445e50eadfce261fcd2f82d16cbaa017041 (diff) |
route cff typedefs to our sal ones
Change-Id: Idbe907195f6e800e42c59ac8dbe4385d60afee80
Reviewed-on: https://gerrit.libreoffice.org/47610
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/fontsubset/cff.cxx')
-rw-r--r-- | vcl/source/fontsubset/cff.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/fontsubset/cff.cxx b/vcl/source/fontsubset/cff.cxx index 284242882274..286c13e411ce 100644 --- a/vcl/source/fontsubset/cff.cxx +++ b/vcl/source/fontsubset/cff.cxx @@ -19,21 +19,21 @@ #include <cstdio> #include <cstring> +#include <vector> #include <assert.h> #include <fontsubset.hxx> #include <vcl/strhelper.hxx> -typedef unsigned char U8; -typedef unsigned short U16; -typedef long long S64; +typedef sal_uInt8 U8; +typedef sal_uInt16 U16; +typedef sal_Int64 S64; typedef sal_Int32 GlyphWidth; typedef double RealType; typedef RealType ValType; -#include <vector> static const char* pStringIds[] = { /*0*/ ".notdef", "space", "exclam", "quotedbl", |