summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-02-06 20:14:05 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-02-07 07:21:21 +0100
commit53a318196859140deb4b3c317db583a90cfd604c (patch)
tree95434095cb34dc12a1aa196e820c1c706b912019 /basic
parent8b57d07a64e03db32b5383f58a40c1509392cd24 (diff)
Fix typo
Change-Id: I9b57e73303cb12e818cd761878d0c11c38f4cc3e Reviewed-on: https://gerrit.libreoffice.org/67481 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbxmod.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index 69343b6d7552..253eac73f0d3 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -2541,7 +2541,7 @@ void SbUserFormModule::Unload()
SbxVariable* pMeth = SbObjModule::Find( "UnloadObject", SbxClassType::Method );
if( pMeth )
{
- SAL_INFO("basic", "Attempting too run the UnloadObjectMethod");
+ SAL_INFO("basic", "Attempting to run the UnloadObjectMethod");
m_xDialog.clear(); //release ref to the uno object
SbxValues aVals;
bool bWaitForDispose = true; // assume dialog is showing
@@ -2556,7 +2556,7 @@ void SbUserFormModule::Unload()
// we've either already got a dispose or we are never going to get one
ResetApiObj();
} // else wait for dispose
- SAL_INFO("basic", "UnloadObject completed ( we hope )");
+ SAL_INFO("basic", "UnloadObject completed (we hope)");
}
}