summaryrefslogtreecommitdiff
path: root/svl/inc
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-03-15 17:57:11 +0100
committerEike Rathke <erack@redhat.com>2013-03-15 19:34:05 +0100
commit6c6c70df543dd34229c8ac98f39073ca3c3bcf4d (patch)
tree242bb7233f25aea6402074a77326561a8dc5f712 /svl/inc
parent7c66e99f1d1f2e640157b079088aba35b33e0fc0 (diff)
rename methods to something meaningful
Change-Id: I92f5b3cb637b7cc6152d118505b69e762047f78b
Diffstat (limited to 'svl/inc')
-rw-r--r--svl/inc/svl/zformat.hxx5
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) ||