diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-31 19:31:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 11:15:11 +0200 |
commit | 0940229305247b4e64e8c85c9734020c9808a6ec (patch) | |
tree | 3491592b0ddade1859dca48c62007bafb9cf47d6 /formula | |
parent | 9c06059ec546683bfa095cf4f59ac6ea94da34fb (diff) |
Fix '..'
To complete this:
https://gerrit.libreoffice.org/#/c/78312/
This is a massive replace for lines ending with
".." instead of "..."
It passed "make check" on Linux.
Change-Id: I07fa7b2e30ba9ea17a1f9a5e21c57216ba958efe
Reviewed-on: https://gerrit.libreoffice.org/78356
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/api/FormulaCompiler.cxx | 4 | ||||
-rw-r--r-- | formula/source/ui/dlg/funcpage.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx index 0c30ff9b3a8e..03386af3cd07 100644 --- a/formula/source/core/api/FormulaCompiler.cxx +++ b/formula/source/core/api/FormulaCompiler.cxx @@ -2297,7 +2297,7 @@ const FormulaToken* FormulaCompiler::CreateStringFromToken( OUStringBuffer& rBuf rBuffer.appendAscii( pInternal[ eOp - ocInternalBegin ] ); else if (eOp == ocIntersect) { - // Nasty, ugly, horrific, terrifying.. + // Nasty, ugly, horrific, terrifying... if (FormulaGrammar::isExcelSyntax( meGrammar)) rBuffer.append(' '); else @@ -2591,7 +2591,7 @@ OpCode FormulaCompiler::NextToken() } } } - // Nasty, ugly, horrific, terrifying.. significant whitespace.. + // Nasty, ugly, horrific, terrifying... significant whitespace... if (eOp == ocSpaces && FormulaGrammar::isExcelSyntax( meGrammar)) { // Fake an intersection op as last op for the next round, but at diff --git a/formula/source/ui/dlg/funcpage.cxx b/formula/source/ui/dlg/funcpage.cxx index 801e2c715aa4..8b12e82e2707 100644 --- a/formula/source/ui/dlg/funcpage.cxx +++ b/formula/source/ui/dlg/funcpage.cxx @@ -141,7 +141,7 @@ void FuncPage::UpdateFunctionList(const OUString& aStr) const sal_uInt32 nCategoryCount = m_pFunctionManager->getCount(); // Category listbox holds additional entries for Last Used and All, so - // the offset should be two but hard coded numbers are ugly.. + // the offset should be two but hard coded numbers are ugly... const sal_Int32 nCategoryOffset = m_xLbCategory->get_count() - nCategoryCount; // If a real category (not Last Used or All) is selected, list only // functions of that category. Else list all, LRU is handled above. |