diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-15 14:56:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-16 07:17:15 +0100 |
commit | 45968141934ac4ea10ad7fe4c2b074152aa2e635 (patch) | |
tree | 594badb27758e4c511815f28d7a9fe57bde49f63 /include/vcl | |
parent | c52cce61d1fbf1f085897bf9ff40e26b1f130998 (diff) |
pahole changes in various
I'm not seeing as much as I would expect here, mostly because pahole
seems to be having trouble parsing quite a few of our structures, and
consequently producing useless data than I then ignore.
XDash 24bytes -> 20bytes
vcl::font::FeatureDefinition 64bytes -> 56bytes
SvXMLTokenMapEntry 16bytes -> 12bytes
SvXMLItemMapEntry 16bytes -> 12bytes
SwContentAtPos 40bytes -> 32bytes
Change-Id: I74c8b93f74b8352f48ef552d7d4239aa7f4237d4
Reviewed-on: https://gerrit.libreoffice.org/69304
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/font/Feature.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/font/Feature.hxx b/include/vcl/font/Feature.hxx index 390abe33f8b7..47092f9bb56e 100644 --- a/include/vcl/font/Feature.hxx +++ b/include/vcl/font/Feature.hxx @@ -56,10 +56,10 @@ public: class VCL_DLLPUBLIC FeatureDefinition { private: - uint32_t m_nCode; OUString m_sDescription; const char* m_pDescriptionID; OUString m_sNumericPart; + uint32_t m_nCode; FeatureParameterType m_eType; // the index of the parameter defines the enum value, string is the description std::vector<FeatureParameter> m_aEnumParameters; |