summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2013-03-13 14:37:01 +0000
committerFridrich Strba <fridrich@documentfoundation.org>2013-03-13 15:07:36 +0000
commitee84eaa33aef7b7523ce949ad3e2ccf9bc467c6d (patch)
treed4e01f15a3cd8cad5679019e7f27c092c43d3a5d
parent6e392dcccd1cd519dd84a084fb538e01a1959d0b (diff)
Fix Set/Let mixup ( from String -> OUString rework ) fdo#60752
Change-Id: I56f3e8b54d80f4575937f8515e8a8d9318353b8d (cherry picked from commit 9dcfc56c7cd76de237f45cf46448c14cfbb2f45c) Reviewed-on: https://gerrit.libreoffice.org/2705 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
-rw-r--r--basic/source/classes/sbxmod.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index b192a4f12913..b8db84ee4278 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -1965,7 +1965,7 @@ void SbModule::handleProcedureProperties( SfxBroadcaster& rBC, const SfxHint& rH
}
if( !pMeth ) // Let
{
- OUString aProcName("Property Set " );
+ OUString aProcName("Property Let " );
aProcName += pProcProperty->GetName();
pMeth = Find( aProcName, SbxCLASS_METHOD );
}