[Libreoffice-commits] core.git: 2 commits - offapi/com sc/inc sc/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sat Aug 29 09:25:03 UTC 2020
offapi/com/sun/star/deployment/ui/PackageManagerDialog.idl | 4 ++--
sc/inc/ChartTools.hxx | 2 +-
sc/source/ui/docshell/dbdocfun.cxx | 2 +-
sc/source/ui/unoobj/ChartTools.cxx | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
New commits:
commit e58ec8cecccb214e0124e80a4b83f0667d0a830c
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Aug 28 12:58:31 2020 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sat Aug 29 11:24:02 2020 +0200
Fix typo in code
It passed "make check" on Linux
Change-Id: I28c727895fdaf3660d3aceb03ddd50b36c80801e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101605
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/offapi/com/sun/star/deployment/ui/PackageManagerDialog.idl b/offapi/com/sun/star/deployment/ui/PackageManagerDialog.idl
index 1e56b23fb882..6acb2487ea17 100644
--- a/offapi/com/sun/star/deployment/ui/PackageManagerDialog.idl
+++ b/offapi/com/sun/star/deployment/ui/PackageManagerDialog.idl
@@ -43,11 +43,11 @@ service PackageManagerDialog : com::sun::star::ui::dialogs::XAsynchronousExecuta
@param xParent
parent window
- @param focussedContext
+ @param focusedContext
context to be focused
*/
create( [in] com::sun::star::awt::XWindow xParent,
- [in] string focussedContext );
+ [in] string focusedContext );
/** Create a GUI and pass the URL of the extension which shall be installed right away.
This constructor is intended for the case when unopkg is run as result of
commit 9597e177dc24d9975bb94906afb4757ea797905a
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Aug 28 12:14:32 2020 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sat Aug 29 11:23:41 2020 +0200
Fix typo in code
It passed "make check" on Linux
Change-Id: Id7fa86dbd231939854135195e36db037a676d543
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101597
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/sc/inc/ChartTools.hxx b/sc/inc/ChartTools.hxx
index 51af49cd96e0..10217f91fab0 100644
--- a/sc/inc/ChartTools.hxx
+++ b/sc/inc/ChartTools.hxx
@@ -47,7 +47,7 @@ SdrOle2Obj* findChartsByName(ScDocShell* pDocShell, SCTAB nTab,
SdrOle2Obj* getChartByIndex(ScDocShell* pDocShell, SCTAB nTab,
long nIndex, ChartSourceType eChartSourceType);
-std::vector<SdrOle2Obj*> getAllPivotChartsConntectedTo(OUString const & sPivotTableName, ScDocShell* pDocShell);
+std::vector<SdrOle2Obj*> getAllPivotChartsConnectedTo(OUString const & sPivotTableName, ScDocShell* pDocShell);
} // end sc::tools
diff --git a/sc/source/ui/docshell/dbdocfun.cxx b/sc/source/ui/docshell/dbdocfun.cxx
index eee2d68010cb..37bf1afc25e2 100644
--- a/sc/source/ui/docshell/dbdocfun.cxx
+++ b/sc/source/ui/docshell/dbdocfun.cxx
@@ -1352,7 +1352,7 @@ bool ScDBDocFunc::RemovePivotTable(ScDPObject& rDPObj, bool bRecord, bool bApi)
{
// If we come from GUI - ask to delete the associated pivot charts too...
std::vector<SdrOle2Obj*> aListOfObjects =
- sc::tools::getAllPivotChartsConntectedTo(rDPObj.GetName(), &rDocShell);
+ sc::tools::getAllPivotChartsConnectedTo(rDPObj.GetName(), &rDocShell);
ScDrawLayer* pModel = rDoc.GetDrawLayer();
diff --git a/sc/source/ui/unoobj/ChartTools.cxx b/sc/source/ui/unoobj/ChartTools.cxx
index 5399256ae443..5bb960d7491a 100644
--- a/sc/source/ui/unoobj/ChartTools.cxx
+++ b/sc/source/ui/unoobj/ChartTools.cxx
@@ -139,7 +139,7 @@ SdrOle2Obj* getChartByIndex(ScDocShell* pDocShell, SCTAB nTab, long nIndex, Char
return nullptr;
}
-std::vector<SdrOle2Obj*> getAllPivotChartsConntectedTo(OUString const & sPivotTableName, ScDocShell* pDocShell)
+std::vector<SdrOle2Obj*> getAllPivotChartsConnectedTo(OUString const & sPivotTableName, ScDocShell* pDocShell)
{
std::vector<SdrOle2Obj*> aObjects;
More information about the Libreoffice-commits
mailing list