diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-31 19:29:31 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 12:29:39 +0200 |
commit | ee8f0a10661b747db9a82b9acba4de343a5a51d6 (patch) | |
tree | ce9b6b2cf18caa73b8500245d558ff2ac484074d /oox | |
parent | 0940229305247b4e64e8c85c9734020c9808a6ec (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 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 2 | ||||
-rw-r--r-- | oox/source/ole/vbaproject.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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 ); |