From 0e493cae407cca65f58329b3319d9c836cdf5096 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 3 Apr 2018 11:56:52 +0200 Subject: new loplugin:dbgunhandledexception enforce that DBG_UNHANDLED_EXCEPTION is called first in a catch block, otherwise it cannot do it's job properly Change-Id: I906436c6861212c44f8f21552ccbceb54f15c6e1 Reviewed-on: https://gerrit.libreoffice.org/52303 Tested-by: Jenkins Reviewed-by: Noel Grandin --- dbaccess/source/ui/tabledesign/TableController.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbaccess/source/ui/tabledesign') diff --git a/dbaccess/source/ui/tabledesign/TableController.cxx b/dbaccess/source/ui/tabledesign/TableController.cxx index 6662a2a535da..de6d7fef6aa1 100644 --- a/dbaccess/source/ui/tabledesign/TableController.cxx +++ b/dbaccess/source/ui/tabledesign/TableController.cxx @@ -411,8 +411,8 @@ bool OTableController::doSaveDoc(bool _bSaveAs) } catch( const Exception& ) { - bError = true; DBG_UNHANDLED_EXCEPTION("dbaccess"); + bError = true; } if ( aInfo.isValid() ) -- cgit