diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-11-15 20:20:52 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-11-16 08:05:42 +0100 |
commit | 1c90d26f455cf5f7a066eeb4fdcbd6fca2cf60cd (patch) | |
tree | 3c12ea37f3b9535f745ed2f1709d63929adb8786 /chart2/source/inc | |
parent | b40877d31e8d7d0102ac7dedc67eb6e91067d27d (diff) |
chart2: disambiguate ShiftedCategoryPosition
There are two of these: one sal_Bool in a .idl file and a bool in a .hxx
file. They need to be printed differently with SAL_DEBUG(), so rename
the C++ one to avoid confusion.
Change-Id: I0f79908a7b74742410813166370cb8ba3017e727
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125256
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'chart2/source/inc')
-rw-r--r-- | chart2/source/inc/chartview/ExplicitScaleValues.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/inc/chartview/ExplicitScaleValues.hxx b/chart2/source/inc/chartview/ExplicitScaleValues.hxx index 1aa9a26c46d6..a49dddeb6658 100644 --- a/chart2/source/inc/chartview/ExplicitScaleValues.hxx +++ b/chart2/source/inc/chartview/ExplicitScaleValues.hxx @@ -48,7 +48,7 @@ struct OOO_DLLPUBLIC_CHARTVIEW ExplicitScaleData css::uno::Reference<css::chart2::XScaling> Scaling; sal_Int32 AxisType; //see css::chart2::AxisType - bool ShiftedCategoryPosition; + bool m_bShiftedCategoryPosition; sal_Int32 TimeResolution; //constant of type <type>css::chart::TimeUnit</type> Date NullDate; }; |