diff options
author | Eike Rathke <erack@redhat.com> | 2013-03-15 17:57:11 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-03-15 19:34:05 +0100 |
commit | 6c6c70df543dd34229c8ac98f39073ca3c3bcf4d (patch) | |
tree | 242bb7233f25aea6402074a77326561a8dc5f712 /svl/inc | |
parent | 7c66e99f1d1f2e640157b079088aba35b33e0fc0 (diff) |
rename methods to something meaningful
Change-Id: I92f5b3cb637b7cc6152d118505b69e762047f78b
Diffstat (limited to 'svl/inc')
-rw-r--r-- | svl/inc/svl/zformat.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svl/inc/svl/zformat.hxx b/svl/inc/svl/zformat.hxx index d4bbef714e9b..ba56235c9825 100644 --- a/svl/inc/svl/zformat.hxx +++ b/svl/inc/svl/zformat.hxx @@ -315,16 +315,17 @@ public: // Whether the second subformat code is really for negative numbers // or another limit set. - bool IsNegativeRealNegative() const + bool IsSecondSubformatRealNegative() const { return fLimit1 == 0.0 && fLimit2 == 0.0 && ( (eOp1 == NUMBERFORMAT_OP_GE && eOp2 == NUMBERFORMAT_OP_NO) || (eOp1 == NUMBERFORMAT_OP_GT && eOp2 == NUMBERFORMAT_OP_LT) || (eOp1 == NUMBERFORMAT_OP_NO && eOp2 == NUMBERFORMAT_OP_NO) ); } + // Whether the first subformat code is really for negative numbers // or another limit set. - sal_Bool IsNegativeRealNegative2() const + bool IsFirstSubformatRealNegative() const { return fLimit1 == 0.0 && fLimit2 == 0.0 && ( (eOp2 == NUMBERFORMAT_OP_GT && eOp1 == NUMBERFORMAT_OP_LT) || |