summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-02-20 20:27:52 +0100
committerEike Rathke <erack@redhat.com>2017-04-10 15:47:38 +0200
commit2864c32733df6b0e9975ed5ee03a747cd2932472 (patch)
treef9176493290dfedaaa5cefd00e25c658ba62413a /include
parent9f70f8761a8cc180171022ffcffc0094c4957057 (diff)
don't obtain the underlying SvNumberformat thrice, tdf#105657 follow-up
... which all GetFormatTable()->...(nFormat) do. Also introduce SvNumberformat::GetMaskedType() for convenience. Change-Id: I9495d71b99116e74e8b877ffc9cd21bd36cc7b7f (cherry picked from commit 820cb1f86f3fd177877b8719315fc03534e2049c) Reviewed-on: https://gerrit.libreoffice.org/36366 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'include')
-rw-r--r--include/svl/zformat.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/svl/zformat.hxx b/include/svl/zformat.hxx
index f798d4090638..dbfa04858c28 100644
--- a/include/svl/zformat.hxx
+++ b/include/svl/zformat.hxx
@@ -169,6 +169,9 @@ public:
/// Get type of format, may include css::util::NumberFormat::DEFINED bit
short GetType() const { return eType; }
+ /// Get type of format, does not include css::util::NumberFormat::DEFINED
+ short GetMaskedType() const { return eType & ~css::util::NumberFormat::DEFINED; }
+
void SetType(const short eSetType) { eType = eSetType; }
// Standard means the I18N defined standard format of this type
void SetStandard() { bStandard = true; }