summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-31 19:29:31 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-01 12:29:39 +0200
commitee8f0a10661b747db9a82b9acba4de343a5a51d6 (patch)
treece9b6b2cf18caa73b8500245d558ff2ac484074d /basic
parent0940229305247b4e64e8c85c9734020c9808a6ec (diff)
Fix '..'
To complete this: https://gerrit.libreoffice.org/#/c/78312/ This is a massive replace for ".." instead of "..." between words. It passed "make check" on Linux. Change-Id: I144d8061fca9f545c762941551e59dffdd3650e8 Reviewed-on: https://gerrit.libreoffice.org/78357 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbunoobj.cxx2
-rw-r--r--basic/source/classes/sbxmod.cxx2
-rw-r--r--basic/source/runtime/methods.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 321ac7faedeb..6e04394d5d99 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -2066,7 +2066,7 @@ void SbUnoObject::Notify( SfxBroadcaster& rBC, const SfxHint& rHint )
Any aRetAny;
if ( bCanBeConsideredAMethod && nParamCount )
{
- // Automation properties have methods, so.. we need to invoke this through
+ // Automation properties have methods, so... we need to invoke this through
// XInvocation
Sequence<Any> args;
processAutomationParams( pParams, args, nParamCount );
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index 09eb6a57663a..74f96ac2740c 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -803,7 +803,7 @@ void SbModule::Notify( SfxBroadcaster& rBC, const SfxHint& rHint )
void SbModule::SetSource32( const OUString& r )
{
- // Default basic mode to library container mode, but.. allow Option VBASupport 0/1 override
+ // Default basic mode to library container mode, but... allow Option VBASupport 0/1 override
SetVBACompat( getDefaultVBAMode( static_cast< StarBASIC*>( GetParent() ) ) );
aOUSource = r;
StartDefinitions();
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 0e636d4107af..13d16b0bfd23 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -3052,7 +3052,7 @@ void SbRtl_FileDateTime(StarBASIC *, SbxArray & rPar, bool)
// An empty date shall not result in a formatted null-date (1899-12-30
// or 1900-01-01) or even worse -0001-12-03 or some such due to how
// GetDayDiff() treats things. There should be an error set in this
- // case anyway because of a missing file or other error above, but.. so
+ // case anyway because of a missing file or other error above, but... so
// do not even bother to use the number formatter.
OUString aRes;
if (aDate.IsEmpty())
@@ -4743,7 +4743,7 @@ bool implDateSerial( sal_Int16 nYear, sal_Int16 nMonth, sal_Int16 nDay,
/* TODO: we could enable the same rollover mechanism for StarBASIC to be
* compatible with VBA (just with our wider supported date range), then
* documentation would need to be adapted. As is, the DateSerial() runtime
- * function works as dumb as documented.. (except that the resulting date
+ * function works as dumb as documented... (except that the resulting date
* is checked for validity now and not just day<=31 and month<=12).
* If change wanted then simply remove overriding RollOver here and adapt
* documentation.*/