diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-01-03 15:40:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-06 11:29:45 +0100 |
commit | 744903b8c8c5a31d304a3191869b7bd76000f36c (patch) | |
tree | eff6a31e195c21eee7f87297ca95abdc1df8f3c2 /fpicker | |
parent | afa6a774936c34b09b37ab8539193ac529681798 (diff) |
Removed redundant semicolons
Change-Id: Ife14b8c3f7d121deb390deb5f405dd42d3016acf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86156
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/PlacesListBox.cxx | 2 | ||||
-rw-r--r-- | fpicker/source/office/RemoteFilesDialog.cxx | 4 | ||||
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/fpicker/source/office/PlacesListBox.cxx b/fpicker/source/office/PlacesListBox.cxx index da3e304dce3e..2fc919f9b1d9 100644 --- a/fpicker/source/office/PlacesListBox.cxx +++ b/fpicker/source/office/PlacesListBox.cxx @@ -134,7 +134,7 @@ IMPL_LINK_NOARG( PlacesListBox, DoubleClick, weld::TreeView&, bool ) } default: break; - }; + } } return true; } diff --git a/fpicker/source/office/RemoteFilesDialog.cxx b/fpicker/source/office/RemoteFilesDialog.cxx index 27ed01464204..d2698983e6b9 100644 --- a/fpicker/source/office/RemoteFilesDialog.cxx +++ b/fpicker/source/office/RemoteFilesDialog.cxx @@ -552,7 +552,7 @@ void RemoteFilesDialog::AddService() default : // Do Nothing break; - }; + } } IMPL_LINK_NOARG( RemoteFilesDialog, SelectServiceHdl, weld::ComboBox&, void ) @@ -609,7 +609,7 @@ IMPL_LINK ( RemoteFilesDialog, EditServiceMenuHdl, const OString&, rIdent, void default : // Do Nothing break; - }; + } } } if( sIdent == "delete_service" && m_xServices_lb->get_count() > 0 ) diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 1915a1d66aa6..519b21329f65 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -991,7 +991,7 @@ IMPL_LINK_NOARG( SvtFileDialog, ConnectToServerPressed_Hdl, weld::Button&, void default : // Do Nothing break; - }; + } } IMPL_LINK_NOARG ( SvtFileDialog, AddPlacePressed_Hdl, weld::Button&, void ) |