summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-06-14 18:18:37 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-06-14 18:33:07 +0200
commit8a8b1ae3e9c1d782bf1cf170f5498992a4f680fe (patch)
treec91bfecb050df43b7098c7aa5763e975b158741d /chart2
parent5a0781a213c944900c5b84d3733c0b71934f817f (diff)
Some more toInt32 clean up
Change-Id: I4f7911cb283d67e7c7b883d629b39588e96f32c2
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/tools/PropertyHelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/tools/PropertyHelper.cxx b/chart2/source/tools/PropertyHelper.cxx
index fb6b0bfadd84..6bbd33975523 100644
--- a/chart2/source/tools/PropertyHelper.cxx
+++ b/chart2/source/tools/PropertyHelper.cxx
@@ -86,7 +86,7 @@ struct lcl_OUStringRestToInt32 : public ::std::unary_function< OUString, sal_Int
{
if( m_nPrefixLength > rStr.getLength() )
return 0;
- return rStr.copy( m_nPrefixLength ).toInt32( 10 /* radix */ );
+ return rStr.copy( m_nPrefixLength ).toInt32();
}
private:
sal_Int32 m_nPrefixLength;