summaryrefslogtreecommitdiff
path: root/svx/source/svdraw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-28 12:21:40 +0200
committerNoel Grandin <noel@peralex.com>2013-11-06 08:51:22 +0200
commit296329a926877d069f55364a177d734f385ce7ae (patch)
treed95dff15946339b5a2df8c7c29159b97137ee30e /svx/source/svdraw
parentebeff1814cbecfba9bbeaeba8067b58f71703a39 (diff)
convert xub_StrLen to sal_Int32
convert for loops using xub_StrLen to use sal_Int32 Change-Id: I5f635ca078966fefe938dbc7e8dea7c8d0d0b554
Diffstat (limited to 'svx/source/svdraw')
-rw-r--r--svx/source/svdraw/svdotextdecomposition.cxx2
-rw-r--r--svx/source/svdraw/svdotextpathdecomposition.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx
index 9384184cf041..970ddf8c4998 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -246,7 +246,7 @@ namespace
{
aDXArray.reserve(rInfo.mnTextLen);
- for(xub_StrLen a(0); a < rInfo.mnTextLen; a++)
+ for(sal_Int32 a=0; a < rInfo.mnTextLen; a++)
{
aDXArray.push_back((double)rInfo.mpDXArray[a]);
}
diff --git a/svx/source/svdraw/svdotextpathdecomposition.cxx b/svx/source/svdraw/svdotextpathdecomposition.cxx
index 528a5aec696c..298db8737229 100644
--- a/svx/source/svdraw/svdotextpathdecomposition.cxx
+++ b/svx/source/svdraw/svdotextpathdecomposition.cxx
@@ -100,7 +100,7 @@ namespace
{
maDblDXArray.reserve(mnTextLength);
- for(xub_StrLen a(0); a < mnTextLength; a++)
+ for(sal_Int32 a=0; a < mnTextLength; a++)
{
maDblDXArray.push_back((double)rInfo.mpDXArray[a]);
}