summaryrefslogtreecommitdiff
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
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
-rw-r--r--basic/source/classes/sbunoobj.cxx2
-rw-r--r--basic/source/classes/sbxmod.cxx2
-rw-r--r--basic/source/runtime/methods.cxx4
-rw-r--r--chart2/source/tools/DiagramHelper.cxx2
-rw-r--r--connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx2
-rw-r--r--extensions/source/ole/oleobjw.cxx2
-rw-r--r--filter/source/config/cache/filtercache.cxx2
-rw-r--r--filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl4
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/table_of_content.xsl2
-rw-r--r--framework/source/inc/loadenv/loadenv.hxx2
-rw-r--r--i18nlangtag/source/languagetag/languagetag.cxx6
-rw-r--r--i18npool/source/breakiterator/breakiteratorImpl.cxx2
-rw-r--r--i18npool/source/breakiterator/breakiterator_unicode.cxx2
-rw-r--r--i18npool/source/search/levdis.hxx2
-rw-r--r--i18npool/source/search/textsearch.cxx2
-rw-r--r--include/i18nlangtag/lang.h6
-rw-r--r--offapi/com/sun/star/i18n/XCalendar3.idl2
-rw-r--r--oox/source/export/chartexport.cxx2
-rw-r--r--oox/source/ole/vbaproject.cxx2
-rw-r--r--sc/inc/rangenam.hxx2
-rw-r--r--sc/qa/unit/ucalc_formula.cxx4
-rw-r--r--sc/qa/unit/ucalc_sort.cxx4
-rw-r--r--sc/source/core/data/dociter.cxx2
-rw-r--r--sc/source/core/data/document10.cxx2
-rw-r--r--sc/source/core/data/formulacell.cxx4
-rw-r--r--sc/source/core/tool/compiler.cxx2
-rw-r--r--sc/source/core/tool/dbdata.cxx4
-rw-r--r--sc/source/core/tool/grouparealistener.cxx2
-rw-r--r--sc/source/core/tool/interpr1.cxx8
-rw-r--r--sc/source/core/tool/interpr4.cxx2
-rw-r--r--sc/source/core/tool/interpr7.cxx2
-rw-r--r--sc/source/core/tool/parclass.cxx2
-rw-r--r--sc/source/filter/excel/xltoolbar.hxx2
-rw-r--r--sc/source/filter/oox/workbooksettings.cxx2
-rw-r--r--sc/source/ui/vba/vbarange.cxx2
-rw-r--r--sc/source/ui/vba/vbaworksheet.cxx2
-rw-r--r--sc/source/ui/view/viewdata.cxx2
-rw-r--r--sc/source/ui/view/viewfunc.cxx4
-rw-r--r--sd/source/core/sdpage_animations.cxx4
-rw-r--r--shell/source/backends/localebe/localebackend.cxx2
-rw-r--r--sot/source/sdstor/storage.cxx2
-rw-r--r--stoc/source/corereflection/crefl.cxx2
-rw-r--r--svl/source/numbers/zforfind.cxx2
-rw-r--r--sw/inc/editsh.hxx2
-rw-r--r--sw/source/core/inc/UndoSplitMove.hxx6
-rw-r--r--sw/source/core/layout/calcmove.cxx2
-rw-r--r--sw/source/filter/ww8/wrtw8esh.cxx2
-rw-r--r--unotools/source/misc/syslocale.cxx2
-rw-r--r--vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx8
-rw-r--r--vcl/unx/generic/printer/ppdparser.cxx2
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.cxx4
51 files changed, 72 insertions, 72 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.*/
diff --git a/chart2/source/tools/DiagramHelper.cxx b/chart2/source/tools/DiagramHelper.cxx
index 39307cb11240..22ddfb27acd5 100644
--- a/chart2/source/tools/DiagramHelper.cxx
+++ b/chart2/source/tools/DiagramHelper.cxx
@@ -1188,7 +1188,7 @@ sal_Int32 DiagramHelper::getPercentNumberFormat( const Reference< util::XNumberF
{
// This *assumes* the sequence is sorted as in
// NfIndexTableOffset and the first format is the integer 0%
- // format by chance.. which usually is the case, but.. anyway,
+ // format by chance... which usually is the case, but... anyway,
// we usually also have a number formatter so don't reach here.
nRet = aKeySeq[0];
}
diff --git a/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx b/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx
index d7a054297698..110eb18e9a51 100644
--- a/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx
+++ b/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx
@@ -358,7 +358,7 @@ sal_Int32 ResultSetMetaData::getScale( sal_Int32 column )
OUString ResultSetMetaData::getTableName( sal_Int32 )
{
-// LEM TODO This is very fishy.. Should probably return the table to which that column belongs!
+// LEM TODO This is very fishy... Should probably return the table to which that column belongs!
return m_tableName;
}
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx
index 15e84503d3ba..16755415ab2a 100644
--- a/extensions/source/ole/oleobjw.cxx
+++ b/extensions/source/ole/oleobjw.cxx
@@ -444,7 +444,7 @@ Any SAL_CALL IUnknownWrapper::getValue( const OUString& aPropertyName )
o2u_attachCurrentThread();
ITypeInfo * pInfo = getTypeInfo();
// I was going to implement an XServiceInfo interface to allow the type
- // of the automation object to be exposed.. but it seems
+ // of the automation object to be exposed... but it seems
// from looking at comments in the code that it is possible for
// this object to actually wrap a UNO object ( I guess if automation is
// used from MSO to create Openoffice objects ) Therefore, those objects
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index aef53ed3db60..ad278e28caf6 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -2081,7 +2081,7 @@ void FilterCache::impl_readOldFormat()
m_lFilters[pItems[i]] = impl_readOldItem(xSet, E_FILTER, pItems[i]);
}
}
- /* corrupt filter addon? Because it's external (optional) code.. we can ignore it. Addon won't work then...
+ /* corrupt filter addon? Because it's external (optional) code... we can ignore it. Addon won't work then...
but that seems to be acceptable.
see #139088# for further information
*/
diff --git a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
index c9e16ace8fa5..b9f18a2e0306 100644
--- a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
+++ b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
@@ -5018,7 +5018,7 @@
</xsl:call-template>
<xsl:text>cm</xsl:text>
</xsl:when>
- <!-- Note: Specify where this value come from.. -->
+ <!-- Note: Specify where this value come from... -->
<xsl:otherwise>2.096cm</xsl:otherwise>
</xsl:choose>
</xsl:variable>
@@ -6312,7 +6312,7 @@
</xsl:choose>
</xsl:when>
<xsl:otherwise>
- <!-- as for the spanned cells no style is taken.. -->
+ <!-- as for the spanned cells no style is taken... -->
<xsl:choose>
<!-- inherit style from parent row style-->
<xsl:when test="../@ss:StyleID">
diff --git a/filter/source/xslt/odf2xhtml/export/common/table_of_content.xsl b/filter/source/xslt/odf2xhtml/export/common/table_of_content.xsl
index 743fa368c76f..bbbb26703399 100644
--- a/filter/source/xslt/odf2xhtml/export/common/table_of_content.xsl
+++ b/filter/source/xslt/odf2xhtml/export/common/table_of_content.xsl
@@ -293,7 +293,7 @@ Scenarios tabstops
4) first style:type would have no right preceding tabStop
-> works well with first sceanrios 1 and 3
-5) last style:type would be a special case, if it would be left aligned, but this won't happen in our case.. :D
+5) last style:type would be a special case, if it would be left aligned, but this won't happen in our case... :D
Scenarios unmatched:
- text:styleposition 'center' will not be matched in our case (effort for nothing), there will be only 'right' and not 'right'
diff --git a/framework/source/inc/loadenv/loadenv.hxx b/framework/source/inc/loadenv/loadenv.hxx
index ec2515fd0dfa..5b149f72ec0d 100644
--- a/framework/source/inc/loadenv/loadenv.hxx
+++ b/framework/source/inc/loadenv/loadenv.hxx
@@ -494,7 +494,7 @@ private:
@descr Note: Showing of a frame is bound to a special feature...
a) If we recycle any existing frame, we must bring it to front.
- Showing of such frame is not needed really.. because we recycle
+ Showing of such frame is not needed really... because we recycle
visible frames only!
b) If the document was already shown (e.g. by our progress implementation)
we do nothing here. The reason behind: The document was already shown...
diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx
index e88e5c1ab3cd..e972400f7c84 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -1085,7 +1085,7 @@ bool LanguageTagImpl::canonicalize()
}
else
{
- // Now this is getting funny.. we only have some BCP47 string
+ // Now this is getting funny... we only have some BCP47 string
// and want to determine if parsing it would be possible
// without using liblangtag just to see if it is a simple known
// locale or could fall back to one.
@@ -2560,7 +2560,7 @@ LanguageTagImpl::Extraction LanguageTagImpl::simpleExtract( const OUString& rBcp
rLanguage = "es";
rScript.clear();
rCountry = "ES";
- rVariants = "tradnl"; // this is nonsense, but.. ignored.
+ rVariants = "tradnl"; // this is nonsense, but... ignored.
eRet = EXTRACTED_KNOWN_BAD;
}
}
@@ -2745,7 +2745,7 @@ OUString LanguageTag::convertToBcp47( const css::lang::Locale& rLocale, bool bRe
OUString LanguageTag::convertToBcp47( LanguageType nLangID )
{
lang::Locale aLocale( LanguageTag::convertToLocale( nLangID ));
- // If system for some reason (should not happen.. haha) could not be
+ // If system for some reason (should not happen... haha) could not be
// resolved DO NOT CALL LanguageTag::convertToBcp47(Locale) because that
// would recurse into this method here!
if (aLocale.Language.isEmpty())
diff --git a/i18npool/source/breakiterator/breakiteratorImpl.cxx b/i18npool/source/breakiterator/breakiteratorImpl.cxx
index 21cdfce9c499..41ef28fe0162 100644
--- a/i18npool/source/breakiterator/breakiteratorImpl.cxx
+++ b/i18npool/source/breakiterator/breakiteratorImpl.cxx
@@ -262,7 +262,7 @@ static sal_Int32 iterateCodePoints(const OUString& Text, sal_Int32 &nStartPos, s
ch = Text.iterateCodePoints(&nStartPos, inc);
// Fix for #i80436#.
// erAck: 2009-06-30T21:52+0200 This logic looks somewhat
- // suspicious as if it cures a symptom.. anyway, had to add
+ // suspicious as if it cures a symptom... anyway, had to add
// nStartPos < Text.getLength() to silence the (correct) assertion
// in rtl_uString_iterateCodePoints() if Text was one character
// (codepoint) only, made up of a surrogate pair.
diff --git a/i18npool/source/breakiterator/breakiterator_unicode.cxx b/i18npool/source/breakiterator/breakiterator_unicode.cxx
index 398bdd7326c0..fea868eb85e9 100644
--- a/i18npool/source/breakiterator/breakiterator_unicode.cxx
+++ b/i18npool/source/breakiterator/breakiterator_unicode.cxx
@@ -108,7 +108,7 @@ void BreakIterator_Unicode::loadICUBreakIterator(const css::lang::Locale& rLocal
// Using the cache map prevents accessing the file system for each
// udata_open() where ICU tries first files then data objects. And that for
- // two fallbacks worst case.. for each new allocated EditEngine, layout
+ // two fallbacks worst case... for each new allocated EditEngine, layout
// cell, ... *ouch* Also non-rule locale based iterators can be mapped.
// This also speeds up loading iterators for alternating or generally more
// than one language/locale in that iterators are not constructed and
diff --git a/i18npool/source/search/levdis.hxx b/i18npool/source/search/levdis.hxx
index fc7ed021dfa8..c789b7da8fb5 100644
--- a/i18npool/source/search/levdis.hxx
+++ b/i18npool/source/search/levdis.hxx
@@ -63,7 +63,7 @@
// One caveat, if the WLD reaches nLimit due to nDelR0 (i.e. data string is nZ
// characters longer than pattern) then no character can be replaced any more.
// This can be circumvented by increasing nX or/and nZ, but of course with the
-// side effect of being less strict then.. or the other solution is to use
+// side effect of being less strict then... or the other solution is to use
// relaxed SplitCount (see below), which is the default when using CalcLPQR().
//
// Attention: shorter = WLD.Insert, longer = WLD.Delete
diff --git a/i18npool/source/search/textsearch.cxx b/i18npool/source/search/textsearch.cxx
index f6f5fd3c618e..ea369329542e 100644
--- a/i18npool/source/search/textsearch.cxx
+++ b/i18npool/source/search/textsearch.cxx
@@ -867,7 +867,7 @@ void TextSearch::RESrchPrepare( const css::util::SearchOptions2& rOptions)
// of the processor and the details of the specific pattern, but will
// typically be on the order of milliseconds."
// Just what is a good value? 42 is always an answer ... the 23 enigma
- // as well.. which on the dev's machine is roughly 50 seconds with the
+ // as well... which on the dev's machine is roughly 50 seconds with the
// pattern of fdo#70627.
/* TODO: make this a configuration settable value and possibly take
* complexity of expression into account and maybe even length of text
diff --git a/include/i18nlangtag/lang.h b/include/i18nlangtag/lang.h
index 17be1d19f531..d149016d2ae4 100644
--- a/include/i18nlangtag/lang.h
+++ b/include/i18nlangtag/lang.h
@@ -65,8 +65,8 @@
! BUT, you can download a PDF document from
! http://msdn.microsoft.com/library/cc233965.aspx
- ! that has YET MORE definitions, sigh.. didn't cross-check if any are missing
- ! from that.. however, it also contains a few MS-reserved definitions that use
+ ! that has YET MORE definitions, sigh... didn't cross-check if any are missing
+ ! from that... however, it also contains a few MS-reserved definitions that use
! ISO 639-3 codes reserved for local use, such as 'qps-ploc' and 'qps-ploca'
! (sic!), or strange things like 'ar-Ploc-SA' and 'ja-Ploc-JP' ('Ploc'??).
!
@@ -470,7 +470,7 @@ namespace o3tl
#define LANGUAGE_Neither_defined_nor_reserved_0x1C0C LanguageType(0x1C0C)
#define LANGUAGE_Neither_defined_nor_reserved_0x2008 LanguageType(0x2008)
-/* MS defines these as reserved, whatever that might imply.. */
+/* MS defines these as reserved, whatever that might imply... */
#define LANGUAGE_reserved_0xEEEE LanguageType(0xEEEE) /* primary 0x2ee, sub 0x3b */
#define LANGUAGE_reserved_0xF2EE LanguageType(0xF2EE) /* primary 0x2ee, sub 0x3c */
diff --git a/offapi/com/sun/star/i18n/XCalendar3.idl b/offapi/com/sun/star/i18n/XCalendar3.idl
index 7958853739bd..16d5df5e7dd0 100644
--- a/offapi/com/sun/star/i18n/XCalendar3.idl
+++ b/offapi/com/sun/star/i18n/XCalendar3.idl
@@ -26,7 +26,7 @@ module com { module sun { module star { module i18n {
::com::sun::star::i18n::XExtendedCalendar and
provides additional methods to obtain Calendar2 items
that include the possessive genitive case month names and sequences
- of CalendarItem2 items.. </p>
+ of CalendarItem2 items... </p>
@since LibreOffice 3.5
*/
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index a813acfd83b8..c282b0d9263f 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -594,7 +594,7 @@ OUString ChartExport::parseFormula( const OUString& rRange )
/* TODO: it would be much better to introduce a
* getSourceRangeRepresentation(css::sheet::AddressConvention) to
* return the ranges in a specific convention than converting them with
- * the overhead of creating an XFormulaParser for each.. */
+ * the overhead of creating an XFormulaParser for each... */
uno::Sequence<sheet::FormulaToken> aTokens = xParser->parseFormula( rRange, CellAddress( 0, 0, 0 ) );
if( xParserProps.is() )
{
diff --git a/oox/source/ole/vbaproject.cxx b/oox/source/ole/vbaproject.cxx
index 7cafeba3554a..bf31f2a2350f 100644
--- a/oox/source/ole/vbaproject.cxx
+++ b/oox/source/ole/vbaproject.cxx
@@ -163,7 +163,7 @@ bool VbaProject::importVbaProject( StorageBase& rVbaPrjStrg )
}
StorageRef noStorage;
// if the GraphicHelper tries to use noStorage it will of course crash
- // but.. this shouldn't happen as there is no reason for GraphicHelper
+ // but... this shouldn't happen as there is no reason for GraphicHelper
// to do that when importing VBA projects
GraphicHelper grfHlp( mxContext, xFrame, noStorage );
importVbaProject( rVbaPrjStrg, grfHlp );
diff --git a/sc/inc/rangenam.hxx b/sc/inc/rangenam.hxx
index 32bd0b3a7fe9..4ca0054050fd 100644
--- a/sc/inc/rangenam.hxx
+++ b/sc/inc/rangenam.hxx
@@ -99,7 +99,7 @@ public:
const ScAddress& rTarget );
// rTarget is ABSPOS jump label
- /* Exact copy, not recompiled, no other index (!), nothing.. except if
+ /* Exact copy, not recompiled, no other index (!), nothing... except if
* pDocument or pPos are passed, those values are assigned instead of the
* copies. */
ScRangeData( const ScRangeData& rScRangeData, ScDocument* pDocument = nullptr, const ScAddress* pPos = nullptr );
diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx
index 57b27ff1d215..b743e646f12e 100644
--- a/sc/qa/unit/ucalc_formula.cxx
+++ b/sc/qa/unit/ucalc_formula.cxx
@@ -4975,7 +4975,7 @@ void Test::testFuncIFERROR()
{ "=IFNA(A7;-7)", "-7" },
{ "=IFNA(VLOOKUP(\"4\";A8:A10;1;0);-2)", "4" },
{ "=IFNA(VLOOKUP(\"fop\";A8:A10;1;0);-2)", "-2" },
- { "{=IFERROR(3*A11:A12;1998)}[0]", "1998" }, // um.. this is not the correct way to insert a
+ { "{=IFERROR(3*A11:A12;1998)}[0]", "1998" }, // um... this is not the correct way to insert a
{ "{=IFERROR(3*A11:A12;1998)}[1]", "69" } // matrix formula, just a place holder, see below
};
@@ -8096,7 +8096,7 @@ void Test::testFuncMDETERM()
// 6.34413156928661e-17 instead of 0.0 (tdf#99730) so lower the bar to
// 10e-14.
// Then again on aarch64, ppc64* and s390x it also fails.
- // Sigh.. why do we even test this? The original complaint in tdf#32834
+ // Sigh... why do we even test this? The original complaint in tdf#32834
// was about -9.51712667007776E-016
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of MDETERM incorrect for singular integer matrix",
0.0, m_pDoc->GetValue(aPos), 1e-14);
diff --git a/sc/qa/unit/ucalc_sort.cxx b/sc/qa/unit/ucalc_sort.cxx
index fe31e2a803a7..a527fce73ac0 100644
--- a/sc/qa/unit/ucalc_sort.cxx
+++ b/sc/qa/unit/ucalc_sort.cxx
@@ -1232,8 +1232,8 @@ void Test::testSortRefUpdate4_Impl()
/* FIXME: this test is not roll-over-midnight safe and will fail then! We may
* want to have something different, but due to the nature of volatile
* functions it's not that easy to come up with something reproducible staying
- * stable over sorts.. ;-) Check for time and don't run test a few seconds
- * before midnight, ermm.. */
+ * stable over sorts... ;-) Check for time and don't run test a few seconds
+ * before midnight, ermm... */
void Test::testSortRefUpdate5()
{
SortRefUpdateSetter aUpdateSet;
diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index 9772d7e82073..55f00ef10d22 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -1891,7 +1891,7 @@ bool ScQueryCellIterator::BinarySearch()
// If all hits didn't result in a moving limit there's something
// strange, e.g. data range not properly sorted, or only identical
// values encountered, which doesn't mean there aren't any others in
- // between.. leave it to GetThis(). The condition for this would be
+ // between... leave it to GetThis(). The condition for this would be
// if (nLastInRange == nFirstLastInRange) nLo = nFirstLastInRange;
// Else, in case no exact match was found, we step back for a
// subsequent GetThis() to find the last in range. Effectively this is
diff --git a/sc/source/core/data/document10.cxx b/sc/source/core/data/document10.cxx
index 064196ef6806..2cdc71b3374a 100644
--- a/sc/source/core/data/document10.cxx
+++ b/sc/source/core/data/document10.cxx
@@ -564,7 +564,7 @@ bool ScDocument::FindRangeNamesReferencingSheet( sc::UpdatedRangeNames& rIndexes
return false;
bool bRef = !bSameDoc; // include every name used when copying to other doc
- if (nRecursion < 126) // whatever.. 42*3
+ if (nRecursion < 126) // whatever... 42*3
{
formula::FormulaTokenArrayPlainIterator aIter(*pCode);
for (const formula::FormulaToken* p = aIter.First(); p; p = aIter.Next())
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx
index d82e58ef6ffe..5f5ab119cda6 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -103,7 +103,7 @@ struct DebugCalculationEntry
Either, somewhere set aDC.mbActive=true, or
aDC.maTrigger=ScAddress(col,row,tab) of interest from where to start.
This does not work for deep recursion > MAXRECURSION, the results are
- somewhat.. funny.. ;)
+ somewhat... funny... ;)
*/
static struct DebugCalculation
{
@@ -3854,7 +3854,7 @@ static void lcl_FindRangeNamesInUse(sc::UpdatedRangeNames& rIndexes, const ScTok
SCTAB nTab = p->GetSheet();
rIndexes.setUpdatedName( nTab, nTokenIndex);
- if (nRecursion < 126) // whatever.. 42*3
+ if (nRecursion < 126) // whatever... 42*3
{
ScRangeData* pSubName = pDoc->FindRangeNameBySheetAndIndex( nTab, nTokenIndex);
if (pSubName)
diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index a70d0e1a5a96..64b418ec73ee 100644
--- a/sc/source/core/tool/compiler.cxx
+++ b/sc/source/core/tool/compiler.cxx
@@ -3872,7 +3872,7 @@ bool ScCompiler::IsTableRefColumn( const OUString& rName ) const
sal_Int32 nOffset = pDBData->GetColumnNameOffset( aName);
if (nOffset >= 0)
{
- // This is sneaky.. we always use the top row of the database range,
+ // This is sneaky... we always use the top row of the database range,
// regardless of whether it is a header row or not. Code evaluating
// this reference must take that into account and may have to act
// differently if it is a header-less table. Which are two places,
diff --git a/sc/source/core/tool/dbdata.cxx b/sc/source/core/tool/dbdata.cxx
index 867952b88683..656690085cf6 100644
--- a/sc/source/core/tool/dbdata.cxx
+++ b/sc/source/core/tool/dbdata.cxx
@@ -906,7 +906,7 @@ void ScDBData::Notify( const SfxHint& rHint )
// Only one cell of a range is broadcasted per area listener if
// multiple cells are affected. Expand the range to what this is
// listening to. Broadcasted address outside should not happen,
- // but.. let it trigger a refresh if.
+ // but... let it trigger a refresh if.
ScRange aHeaderRange( GetHeaderArea());
if (aHeaderRange.IsValid())
{
@@ -1167,7 +1167,7 @@ bool ScDBCollection::NamedDBs::insert(std::unique_ptr<ScDBData> pData)
initInserted(p);
/* TODO: shouldn't the import refresh not be setup for
- * clipboard/undo documents? It was already like this before.. */
+ * clipboard/undo documents? It was already like this before... */
if (p->HasImportParam() && !p->HasImportSelection())
{
p->SetRefreshHandler(mrParent.GetRefreshHandler());
diff --git a/sc/source/core/tool/grouparealistener.cxx b/sc/source/core/tool/grouparealistener.cxx
index 5950c8020c5f..44ca7d40003f 100644
--- a/sc/source/core/tool/grouparealistener.cxx
+++ b/sc/source/core/tool/grouparealistener.cxx
@@ -228,7 +228,7 @@ void FormulaGroupAreaListener::collectFormulaCells(
* newly created, so mpColumn still points to the old column that then has
* the content of a shifted column. Effectively this workaround has the
* consequence that the group area listener is fouled up and not all
- * formula cells are notified.. */
+ * formula cells are notified... */
if (nBlockSize < static_cast<size_t>(mnGroupLen))
{
SAL_WARN("sc.core","FormulaGroupAreaListener::collectFormulaCells() nBlockSize " <<
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index ace9e2479529..2f17b222aaa1 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -3750,7 +3750,7 @@ void ScInterpreter::ScMin( bool bTextAsZero )
/* TODO: the awkward "no value is minimum 0.0" is likely the case
* if a value is numeric_limits::max. Still, that could be a valid
* minimum value as well, but nVal and nMin had been reset after
- * the last svRefList.. so we may lie here. */
+ * the last svRefList... so we may lie here. */
for (SCSIZE i=0; i < nMatRows; ++i)
{
double fVecRes = xResMat->GetDouble(0,i);
@@ -3908,7 +3908,7 @@ void ScInterpreter::ScMax( bool bTextAsZero )
/* TODO: the awkward "no value is maximum 0.0" is likely the case
* if a value is numeric_limits::lowest. Still, that could be a
* valid maximum value as well, but nVal and nMax had been reset
- * after the last svRefList.. so we may lie here. */
+ * after the last svRefList... so we may lie here. */
for (SCSIZE i=0; i < nMatRows; ++i)
{
double fVecRes = xResMat->GetDouble(0,i);
@@ -6345,7 +6345,7 @@ void ScInterpreter::IterateParametersIfs( double(*ResultFunc)( const sc::ParamIf
// end-result calculation
- // This gets weird.. if conditions were calculated using a
+ // This gets weird... if conditions were calculated using a
// reference list array but the main calculation range is not a
// reference list array, then the conditions of the array are
// applied to the main range each in turn to form the array result.
@@ -8169,7 +8169,7 @@ void ScInterpreter::ScIndirect()
aComp.SetRefConvention( eConv); // must be after grammar
std::unique_ptr<ScTokenArray> pArr( aComp.CompileString( sRefStr));
- // Whatever.. use only the specific case.
+ // Whatever... use only the specific case.
if (!pArr->HasOpCode( ocTableRef))
break;
diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index 833c5b12d128..06006c0da5d7 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -1627,7 +1627,7 @@ ScMatrixRef ScInterpreter::PopMatrix()
case svMatrix:
{
// ScMatrix itself maintains an im/mutable flag that should
- // be obeyed where necessary.. so we can return ScMatrixRef
+ // be obeyed where necessary... so we can return ScMatrixRef
// here instead of ScConstMatrixRef.
ScMatrix* pMat = const_cast<FormulaToken*>(p)->GetMatrix();
if ( pMat )
diff --git a/sc/source/core/tool/interpr7.cxx b/sc/source/core/tool/interpr7.cxx
index e9548c0594d7..908c1d20aef2 100644
--- a/sc/source/core/tool/interpr7.cxx
+++ b/sc/source/core/tool/interpr7.cxx
@@ -378,7 +378,7 @@ void ScInterpreter::ScWebservice()
* document (i.e. the formula result could not be influenced by an
* ONLOAD_MUST or ALWAYS recalc, necessary as we don't track
* interim results of subexpressions that could be compared), which
- * also means to track setting ScRecalcMode somehow.. note this is
+ * also means to track setting ScRecalcMode somehow... note this is
* just a vague idea so far and might or might not work. */
if (pMyFormulaCell && pMyFormulaCell->HasHybridStringResult())
{
diff --git a/sc/source/core/tool/parclass.cxx b/sc/source/core/tool/parclass.cxx
index bb6c943299a6..e47fe47fe148 100644
--- a/sc/source/core/tool/parclass.cxx
+++ b/sc/source/core/tool/parclass.cxx
@@ -688,7 +688,7 @@ void ScParameterClassification::GenerateDocumentation()
default:
aStr.append(" (-> ???, classification error?)");
}
- /* We could add yet another log domain for this, if we wanted.. but
+ /* We could add yet another log domain for this, if we wanted... but
* as it more seldom than rarely used it's not actually necessary,
* just grep output. */
SAL_INFO( "sc.core", "CALC_GENPARCLASSDOC: " << aStr.makeStringAndClear());
diff --git a/sc/source/filter/excel/xltoolbar.hxx b/sc/source/filter/excel/xltoolbar.hxx
index 0d71761a1b98..6c03c2be3160 100644
--- a/sc/source/filter/excel/xltoolbar.hxx
+++ b/sc/source/filter/excel/xltoolbar.hxx
@@ -15,7 +15,7 @@ namespace com { namespace sun { namespace star { namespace container { class XIn
class ScCTBWrapper;
// hmm I don't normally use these packed structures
-// but.. hey always good to do something different
+// but... hey always good to do something different
class TBCCmd : public TBBase
{
public:
diff --git a/sc/source/filter/oox/workbooksettings.cxx b/sc/source/filter/oox/workbooksettings.cxx
index cc7366ffd83f..dac0490ae9cb 100644
--- a/sc/source/filter/oox/workbooksettings.cxx
+++ b/sc/source/filter/oox/workbooksettings.cxx
@@ -206,7 +206,7 @@ void WorkbookSettings::finalizeImport()
* 'readOnlyRecommended' is defined as "indicates on open, whether the
* application alerts the user that the file be marked as read-only",
* which sounds silly in itself and seems not to be present if the
- * 'password' attribute isn't present, but.. */
+ * 'password' attribute isn't present, but... */
if (maFileSharing.mbRecommendReadOnly || !maFileSharing.maHashValue.isEmpty())
aSettingsProp.setProperty( PROP_LoadReadonly, true );
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index ae253133be66..d48981bbf1cc 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -3011,7 +3011,7 @@ ScVbaRange::Replace( const OUString& What, const OUString& Replacement, const un
throw uno::RuntimeException("Range::Replace, missing params" );
OUString sWhat = VBAToRegexp( What);
// #TODO #FIXME SearchFormat & ReplacesFormat are not processed
- // What do we do about MatchByte.. we don't seem to support that
+ // What do we do about MatchByte... we don't seem to support that
const SvxSearchItem& globalSearchOptions = ScGlobal::GetSearchItem();
SvxSearchItem newOptions( globalSearchOptions );
diff --git a/sc/source/ui/vba/vbaworksheet.cxx b/sc/source/ui/vba/vbaworksheet.cxx
index f579abf7005f..6a8d27913acc 100644
--- a/sc/source/ui/vba/vbaworksheet.cxx
+++ b/sc/source/ui/vba/vbaworksheet.cxx
@@ -956,7 +956,7 @@ ScVbaWorksheet::getControlShape( const OUString& sName )
// thiscomponent.currentcontroller.getControl( controlModel ) )
// and the thing to realise is that it is only possible to get an XControl
// for a currently displayed control :-( often we would want to modify
- // a control not on the active sheet. But.. you can always access the
+ // a control not on the active sheet. But... you can always access the
// XControlShape from the DrawPage whether that is the active drawpage or not
uno::Reference< drawing::XDrawPageSupplier > xDrawPageSupplier( getSheet(), uno::UNO_QUERY_THROW );
diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx
index 960a6edbb235..fc9f8d6f818a 100644
--- a/sc/source/ui/view/viewdata.cxx
+++ b/sc/source/ui/view/viewdata.cxx
@@ -1227,7 +1227,7 @@ bool ScViewData::SelectionForbidsCellFill()
bool ScViewData::SelectionFillDOOM( const ScRange& rRange )
{
// Assume that more than 23 full columns (23M cells) will not be
- // successful.. Even with only 10 bytes per cell that would already be
+ // successful... Even with only 10 bytes per cell that would already be
// 230MB, formula cells would be 100 bytes and more per cell.
// rows * columns > 23m => rows > 23m / columns
// to not overflow in case number of available columns or rows would be
diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx
index 021a34619fef..129f791039dc 100644
--- a/sc/source/ui/view/viewfunc.cxx
+++ b/sc/source/ui/view/viewfunc.cxx
@@ -478,7 +478,7 @@ void ScViewFunc::EnterData( SCCOL nCol, SCROW nRow, SCTAB nTab,
// If the array has an error, (it) must be RPN-erased in the newly generated
// cells and the error be set explicitly, so that
// via FormulaCell copy-ctor and Interpreter it will be, when possible,
- // ironed out again, too intelligent.. e.g.: =1))
+ // ironed out again, too intelligent... e.g.: =1))
FormulaError nError = pArr->GetCodeError();
if ( nError == FormulaError::NONE )
{
@@ -546,7 +546,7 @@ void ScViewFunc::EnterData( SCCOL nCol, SCROW nRow, SCTAB nTab,
{
// Reset to General so the actual format can be determined
// after the cell has been interpreted. A sticky boolean
- // number format is highly likely unwanted.. see tdf#75650.
+ // number format is highly likely unwanted... see tdf#75650.
// General of same locale as current number format.
const SvNumberformat* pEntry = pFormatter->GetEntry( nIndex);
const LanguageType nLang = (pEntry ? pEntry->GetLanguage() : ScGlobal::eLnge);
diff --git a/sd/source/core/sdpage_animations.cxx b/sd/source/core/sdpage_animations.cxx
index cb91df1caf3b..f9d55654ff0e 100644
--- a/sd/source/core/sdpage_animations.cxx
+++ b/sd/source/core/sdpage_animations.cxx
@@ -113,7 +113,7 @@ void SdPage::onParagraphInserted( ::Outliner* pOutliner, Paragraph const * pPara
ParagraphTarget aTarget;
aTarget.Shape.set( pObj->getUnoShape(), UNO_QUERY );
/* FIXME: Paragraph should be sal_Int32, though more than 64k
- * paragrapsh at a shape are unlikely.. */
+ * paragrapsh at a shape are unlikely... */
aTarget.Paragraph = static_cast<sal_Int16>(pOutliner->GetAbsPos( pPara ));
getMainSequence()->insertTextRange( makeAny( aTarget ) );
@@ -128,7 +128,7 @@ void SdPage::onParagraphRemoving( ::Outliner* pOutliner, Paragraph const * pPara
ParagraphTarget aTarget;
aTarget.Shape.set( pObj->getUnoShape(), UNO_QUERY );
/* FIXME: Paragraph should be sal_Int32, though more than 64k
- * paragrapsh at a shape are unlikely.. */
+ * paragrapsh at a shape are unlikely... */
aTarget.Paragraph = static_cast<sal_Int16>(pOutliner->GetAbsPos( pPara ));
getMainSequence()->disposeTextRange( makeAny( aTarget ) );
diff --git a/shell/source/backends/localebe/localebackend.cxx b/shell/source/backends/localebe/localebackend.cxx
index 191c5940980e..263b039e9219 100644
--- a/shell/source/backends/localebe/localebackend.cxx
+++ b/shell/source/backends/localebe/localebackend.cxx
@@ -205,7 +205,7 @@ static css::beans::Optional<css::uno::Any> ImplGetLocale(char const * category)
return {false, {}};
}
- // This is a tad awkward.. but the easiest way to obtain what we're
+ // This is a tad awkward... but the easiest way to obtain what we're
// actually interested in. For example this also converts
// "ca_ES.UTF-8@valencia" to "ca-ES-valencia".
const OString aLocaleStr(locale);
diff --git a/sot/source/sdstor/storage.cxx b/sot/source/sdstor/storage.cxx
index 423482349ecf..16d1a976b577 100644
--- a/sot/source/sdstor/storage.cxx
+++ b/sot/source/sdstor/storage.cxx
@@ -253,7 +253,7 @@ bool SotStorageStream::SetProperty( const OUString& rName, const css::uno::Any&
/**
* SotStorage::SotStorage()
*
- * A I.. object must be passed to SvObject, because otherwise itself will
+ * A I... object must be passed to SvObject, because otherwise itself will
* create and define an IUnknown, so that all other I... objects would be
* destroyed with delete (Owner() == true).
* But IStorage objects are only used and not implemented by ourselves,
diff --git a/stoc/source/corereflection/crefl.cxx b/stoc/source/corereflection/crefl.cxx
index 8ac22858c21a..55b742d1a2fe 100644
--- a/stoc/source/corereflection/crefl.cxx
+++ b/stoc/source/corereflection/crefl.cxx
@@ -234,7 +234,7 @@ Any IdlReflectionServiceImpl::getByHierarchicalName( const OUString & rName )
// if you are interested in a type then CALL forName()!!!
// this way is NOT recommended for types, because this method looks for constants first
- // if td manager found some type, it will be in the cache (hopefully.. we just got it)
+ // if td manager found some type, it will be in the cache (hopefully... we just got it)
// so the second retrieving via c typelib callback chain should succeed...
// try to get _type_ by name
diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx
index ff8f8429ad42..0872ea5b5121 100644
--- a/svl/source/numbers/zforfind.cxx
+++ b/svl/source/numbers/zforfind.cxx
@@ -653,7 +653,7 @@ short ImpSvNumberInputScan::GetMonth( const OUString& rString, sal_Int32& nPos )
{
// Brutal hack for German locales that know "Januar" or "Jänner".
/* TODO: add alternative month names to locale data? if there are
- * more languages.. */
+ * more languages... */
const LanguageTag& rLanguageTag = pFormatter->GetLanguageTag();
if (rLanguageTag.getLanguage() == "de")
{
diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx
index 42ce37f575aa..7d033edb76ea 100644
--- a/sw/inc/editsh.hxx
+++ b/sw/inc/editsh.hxx
@@ -841,7 +841,7 @@ public:
sal_uInt16 GetLineCount();
- /// Query and set footnote-text/number. Set.. to current SSelection!
+ /// Query and set footnote-text/number. Set... to current SSelection!
bool GetCurFootnote( SwFormatFootnote* pToFillFootnote = nullptr );
bool SetCurFootnote( const SwFormatFootnote& rFillFootnote );
bool HasFootnotes( bool bEndNotes = false ) const;
diff --git a/sw/source/core/inc/UndoSplitMove.hxx b/sw/source/core/inc/UndoSplitMove.hxx
index a21b249b2509..44ef64ccdd9d 100644
--- a/sw/source/core/inc/UndoSplitMove.hxx
+++ b/sw/source/core/inc/UndoSplitMove.hxx
@@ -46,9 +46,9 @@ public:
class SwUndoMove : public SwUndo, private SwUndRng, private SwUndoSaveContent
{
- // nDest.. - destination range of move (after move!)
- // nIns.. - source Position of move (after move!)
- // nMv.. - destination position of move (before move!); for REDO
+ // nDest... - destination range of move (after move!)
+ // nIns... - source Position of move (after move!)
+ // nMv... - destination position of move (before move!); for REDO
sal_uLong m_nDestStartNode, m_nDestEndNode, m_nInsPosNode, m_nMoveDestNode;
sal_Int32 m_nDestStartContent, m_nDestEndContent, m_nInsPosContent, m_nMoveDestContent;
diff --git a/sw/source/core/layout/calcmove.cxx b/sw/source/core/layout/calcmove.cxx
index cb956d8f916c..a986773f422a 100644
--- a/sw/source/core/layout/calcmove.cxx
+++ b/sw/source/core/layout/calcmove.cxx
@@ -1986,7 +1986,7 @@ static bool lcl_IsNextFootnoteBoss( const SwFrame *pFrame, const SwFrame* pNxt )
// If pNxt is a first column, we use the page instead.
while( pNxt && pNxt->IsColumnFrame() && !pNxt->GetPrev() )
pNxt = pNxt->GetUpper()->FindFootnoteBossFrame();
- // So.. now pFrame and pNxt are either two adjacent pages or columns.
+ // So... now pFrame and pNxt are either two adjacent pages or columns.
return pFrame && pNxt && pFrame->GetNext() == pNxt;
}
diff --git a/sw/source/filter/ww8/wrtw8esh.cxx b/sw/source/filter/ww8/wrtw8esh.cxx
index de3527796373..af8baa78b3cc 100644
--- a/sw/source/filter/ww8/wrtw8esh.cxx
+++ b/sw/source/filter/ww8/wrtw8esh.cxx
@@ -3015,7 +3015,7 @@ SwMSConvertControls::SwMSConvertControls( SfxObjectShell const *pDSh, SwPaM *pP
// in transitioning away old filter for ole/ocx controls, ReadOCXStream has been made pure virtual in
-// filter/source/msocximex.cxx, so.. we need an implementation here
+// filter/source/msocximex.cxx, so... we need an implementation here
bool SwMSConvertControls::ReadOCXStream( tools::SvRef<SotStorage> const & rSrc1,
css::uno::Reference< css::drawing::XShape > *pShapeRef,
bool bFloatingCtrl )
diff --git a/unotools/source/misc/syslocale.cxx b/unotools/source/misc/syslocale.cxx
index 9b5d9b3cd782..cad884f71d1f 100644
--- a/unotools/source/misc/syslocale.cxx
+++ b/unotools/source/misc/syslocale.cxx
@@ -199,7 +199,7 @@ rtl_TextEncoding SvtSysLocale::GetBestMimeEncoding()
// 'qlt' to rtl_locale_register() and the underlying system locale
// stuff, which doesn't know about it nor about BCP47 in the Variant
// field. So use the real language and for non-pure ISO cases hope for
- // the best.. the fallback to UTF-8 should solve these cases nowadays.
+ // the best... the fallback to UTF-8 should solve these cases nowadays.
/* FIXME-BCP47: the script needs to go in here as well, so actually
* we'd need some variant fiddling or glibc locale string and tweak
* rtl_locale_register() to know about it! But then again the Windows
diff --git a/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx b/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx
index 7b0d2d10a1ff..bc8bdc6c06a1 100644
--- a/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx
+++ b/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx
@@ -189,7 +189,7 @@ void BitmapRenderTest::testAlphaVirtualDevice()
aColor = pAlphaVirtualDevice->GetPixel(Point(1, 1));
// Read back the opaque pixel
#ifdef MACOSX
- // Oh no.. what we input is not the same as what we get out!
+ // Oh no... what we input is not the same as what we get out!
CPPUNIT_ASSERT_EQUAL(Color(0x002Cff44), aColor);
#elif defined _WIN32
CPPUNIT_ASSERT_LESS(6, deltaColor(Color(0x0022ff55), aColor));
@@ -204,7 +204,7 @@ void BitmapRenderTest::testAlphaVirtualDevice()
aColor = aBitmap.GetPixelColor(1, 1);
#ifdef MACOSX
- // Oh no.. what we input is not the same as what we get out!
+ // Oh no... what we input is not the same as what we get out!
CPPUNIT_ASSERT_EQUAL(Color(0x002Cff44), aColor);
#elif defined _WIN32
CPPUNIT_ASSERT_LESS(6, deltaColor(Color(0x0022ff55), aColor));
@@ -218,7 +218,7 @@ void BitmapRenderTest::testAlphaVirtualDevice()
aColor = pAlphaVirtualDevice->GetPixel(Point(0, 0));
// Read back the semi-transparent pixel
#ifdef MACOSX
- // Oh no.. what we input is not the same as what we get out!
+ // Oh no... what we input is not the same as what we get out!
CPPUNIT_ASSERT_EQUAL(Color(0x342CFF44), aColor);
#elif defined _WIN32
CPPUNIT_ASSERT_LESS(6, deltaColor(Color(0x4422FF55), aColor));
@@ -233,7 +233,7 @@ void BitmapRenderTest::testAlphaVirtualDevice()
aColor = aBitmap.GetPixelColor(0, 0);
#ifdef MACOSX
- // Oh no.. what we input is not the same as what we get out!
+ // Oh no... what we input is not the same as what we get out!
CPPUNIT_ASSERT_EQUAL(Color(0x342CFF44), aColor);
#elif defined _WIN32
CPPUNIT_ASSERT_LESS(6, deltaColor(Color(0x4422FF55), aColor));
diff --git a/vcl/unx/generic/printer/ppdparser.cxx b/vcl/unx/generic/printer/ppdparser.cxx
index 4fc3bc79ac61..1ad69f0726ac 100644
--- a/vcl/unx/generic/printer/ppdparser.cxx
+++ b/vcl/unx/generic/printer/ppdparser.cxx
@@ -1063,7 +1063,7 @@ void PPDParser::parse( ::std::vector< OString >& rLines )
OUString aUniKey(OStringToOUString(aKey, RTL_TEXTENCODING_MS_1252));
// handle CUPS extension for globalized PPDs
/* FIXME-BCP47: really only ISO 639-1 two character language codes?
- * goodnight.. */
+ * goodnight... */
bool bIsGlobalizedLine = false;
css::lang::Locale aTransLocale;
if( ( aUniKey.getLength() > 3 && aUniKey[ 2 ] == '.' ) ||
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 421e3af8bdc7..79f711668a5c 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1839,7 +1839,7 @@ void DomainMapper_Impl::appendOLE( const OUString& rStreamName, const std::share
xOLEProperties->setPropertyValue(s, xReplacementProperties->getPropertyValue(s));
}
else
- // mimic the treatment of graphics here.. it seems anchoring as character
+ // mimic the treatment of graphics here... it seems anchoring as character
// gives a better ( visually ) result
xOLEProperties->setPropertyValue(getPropertyName( PROP_ANCHOR_TYPE ), uno::makeAny( text::TextContentAnchorType_AS_CHARACTER ) );
// remove ( if valid ) associated shape ( used for graphic replacement )
@@ -1905,7 +1905,7 @@ void DomainMapper_Impl::appendStarMath( const Value& val )
uno::makeAny( sal_Int32(size.Width())));
xStarMathProperties->setPropertyValue(getPropertyName( PROP_HEIGHT ),
uno::makeAny( sal_Int32(size.Height())));
- // mimic the treatment of graphics here.. it seems anchoring as character
+ // mimic the treatment of graphics here... it seems anchoring as character
// gives a better ( visually ) result
xStarMathProperties->setPropertyValue(getPropertyName( PROP_ANCHOR_TYPE ),
uno::makeAny( text::TextContentAnchorType_AS_CHARACTER ) );