compilerplugins/clang/vclwidgets.cxx | 2 +- connectivity/source/cpool/ZConnectionPool.hxx | 2 +- connectivity/source/drivers/mysqlc/mysqlc_subcomponent.hxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit a7ecf4545af7330f2e9034249dca37d0f14be5b2 Author: Andrea Gelmini <[email protected]> AuthorDate: Wed Apr 10 16:05:28 2019 +0000 Commit: Julien Nabet <[email protected]> CommitDate: Fri Apr 19 22:57:57 2019 +0200 Fix typo Change-Id: I925942a89d7f01c008788aeada8009a37564b02f Reviewed-on: https://gerrit.libreoffice.org/70971 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/compilerplugins/clang/vclwidgets.cxx b/compilerplugins/clang/vclwidgets.cxx index 4c699bc5a77b..45dbe450ec87 100644 --- a/compilerplugins/clang/vclwidgets.cxx +++ b/compilerplugins/clang/vclwidgets.cxx @@ -292,7 +292,7 @@ void VCLWidgets::checkAssignmentForVclPtrToRawConversion(const SourceLocation& s // if we have T* on the LHS and VclPtr<T> on the RHS, we expect to see either // an ImplicitCastExpr - // or a ExprWithCleanups and then an ImplicitCastExpr + // or an ExprWithCleanups and then an ImplicitCastExpr if (auto implicitCastExpr = dyn_cast<ImplicitCastExpr>(rhs)) { if (implicitCastExpr->getCastKind() != CK_UserDefinedConversion) { return; commit 7031e345238a496aedc41768a9aae6f42d80632a Author: Andrea Gelmini <[email protected]> AuthorDate: Wed Apr 10 16:05:13 2019 +0000 Commit: Julien Nabet <[email protected]> CommitDate: Fri Apr 19 22:57:41 2019 +0200 Fix typo Change-Id: Ica38eedeb2733095a1e6d987ad57064cb9be99bd Reviewed-on: https://gerrit.libreoffice.org/70973 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/connectivity/source/drivers/mysqlc/mysqlc_subcomponent.hxx b/connectivity/source/drivers/mysqlc/mysqlc_subcomponent.hxx index 9e27cd3596cb..c4930f96f77f 100644 --- a/connectivity/source/drivers/mysqlc/mysqlc_subcomponent.hxx +++ b/connectivity/source/drivers/mysqlc/mysqlc_subcomponent.hxx @@ -75,7 +75,7 @@ protected: This method needs to be implemented in derived classes. <BR> The method gets called with s_aMutex acquired. - @return an pointer to the newly created array helper. Must not be NULL. + @return a pointer to the newly created array helper. Must not be NULL. */ virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const = 0; }; commit 14899f9458784929b91ab559ad7e2799963792ca Author: Andrea Gelmini <[email protected]> AuthorDate: Wed Apr 10 16:05:20 2019 +0000 Commit: Julien Nabet <[email protected]> CommitDate: Fri Apr 19 22:57:24 2019 +0200 Fix typo Change-Id: I84ef63b6c82175132b376122253d3b262a065944 Reviewed-on: https://gerrit.libreoffice.org/70976 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/connectivity/source/cpool/ZConnectionPool.hxx b/connectivity/source/cpool/ZConnectionPool.hxx index e02b618678f4..5f87cee16baa 100644 --- a/connectivity/source/cpool/ZConnectionPool.hxx +++ b/connectivity/source/cpool/ZConnectionPool.hxx @@ -94,7 +94,7 @@ namespace connectivity typedef std::map< TDigestHolder,TConnectionPool,TDigestLess> TConnectionMap; - // contains additional information about a activeconnection which is needed to put it back to the pool + // contains additional information about an activeconnection which is needed to put it back to the pool typedef struct { TConnectionMap::iterator aPos; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
