summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-05 22:27:38 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-06 07:19:08 +0200
commit5d0272772a174644e63fd46664887a2cb0362ba5 (patch)
treed0c31c3c4fdbc4eca1431e14831ca4b5f9045a6c /framework
parente8288b8857928cb54077608ca5907c966bfd490f (diff)
consistent percent sign in comments
Change-Id: I9906b4e58fd8672e51f6aa2e56ec68bb28772500
Diffstat (limited to 'framework')
-rw-r--r--framework/source/helper/vclstatusindicator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/helper/vclstatusindicator.cxx b/framework/source/helper/vclstatusindicator.cxx
index 3745beb11a19..a2b062509571 100644
--- a/framework/source/helper/vclstatusindicator.cxx
+++ b/framework/source/helper/vclstatusindicator.cxx
@@ -118,7 +118,7 @@ void SAL_CALL VCLStatusIndicator::setValue(sal_Int32 nValue)
sal_Int32 nRange = m_nRange;
nValue = m_nValue;
- // normalize value to fit the range of 0-100 %
+ // normalize value to fit the range of 0-100%
sal_uInt16 nPercent = sal::static_int_cast< sal_uInt16 >(
::std::min(
((nValue*100) / ::std::max(nRange,(sal_Int32)1)), (sal_Int32)100));