diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-12-18 19:32:03 +0000 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-12-19 08:48:31 +0100 |
commit | 127490ec061e18f77c546069f05826184e1cea06 (patch) | |
tree | 0842cf14423fb47708525d40075f9a090362eab7 | |
parent | a617d85bbb2a3a5bbde0feecfb2922985e920421 (diff) |
Removed useless semicolons
Change-Id: I6efd221e71020030ae5b8ac8800f72e42b13aa28
Reviewed-on: https://gerrit.libreoffice.org/65390
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | vcl/source/bitmap/bitmap.cxx | 2 | ||||
-rw-r--r-- | vcl/unx/gtk3/gtk3gtkinst.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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; } } } |