summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2013-03-19 15:48:39 +0000
committerNoel Power <noel.power@suse.com>2013-03-19 15:48:39 +0000
commit205277f5e640492ce488a030b685f41cf2ef9442 (patch)
tree4c0607fa3ae41475e45bc8f94ce5a2efcda68034 /basic
parent14d452d0c2874f47f0b6ac1cd1c725195d5d69a9 (diff)
remove commented out line I inserted to screw up Juliens patch
Change-Id: I7f874267a640a7cc754eb7477b764f7546fdc5ea
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/methods.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 862f4d00aea4..12dfff2476a6 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -1266,7 +1266,6 @@ RTLFUNC(Mid)
{
aResultStr = aArgStr;
aResultStr.remove( nStartPos, nLen );
- //aResultStr.insert( nStartPos, rPar.Get(4)->GetOUString().getStr(), nLen);
aResultStr.insert( nStartPos, rPar.Get(4)->GetOUString().getStr(), std::min(nLen, rPar.Get(4)->GetOUString().getLength()));
}