vcl/source/bitmap/bitmap.cxx | 2 +- vcl/unx/gtk3/gtk3gtkinst.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit 127490ec061e18f77c546069f05826184e1cea06 Author: Andrea Gelmini <[email protected]> AuthorDate: Tue Dec 18 19:32:03 2018 +0000 Commit: Julien Nabet <[email protected]> CommitDate: Wed Dec 19 08:48:31 2018 +0100 Removed useless semicolons Change-Id: I6efd221e71020030ae5b8ac8800f72e42b13aa28 Reviewed-on: https://gerrit.libreoffice.org/65390 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/vcl/source/bitmap/bitmap.cxx b/vcl/source/bitmap/bitmap.cxx index d76ae3950b4d..c26cf89c3b66 100644 --- a/vcl/source/bitmap/bitmap.cxx +++ b/vcl/source/bitmap/bitmap.cxx @@ -352,7 +352,7 @@ BitmapInfoAccess* Bitmap::AcquireInfoAccess() if( !*pInfoAccess ) { - return nullptr;; + return nullptr; } return pInfoAccess.release(); diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx index 1825fe9703e2..0d72b7cd41c7 100644 --- a/vcl/unx/gtk3/gtk3gtkinst.cxx +++ b/vcl/unx/gtk3/gtk3gtkinst.cxx @@ -3313,7 +3313,7 @@ private: else { auto nMainLen = gtk_notebook_get_n_pages(m_pNotebook); - return nOverFlowIndex + nMainLen;; + return nOverFlowIndex + nMainLen; } } } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
