summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2013-03-13 14:37:01 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-03-13 15:43:47 +0000
commit08a9069bc85daf9f628688346003087056308493 (patch)
tree792e1558258ddc836a54fc560528464e01944f5d
parent6892e43649e9d405c1b38e80826ebe87b2aca2e9 (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/2706 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-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 );
}