From 283a9790bffa6536f4c26bd31d85f815bc64dd08 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 20 Oct 2021 12:48:09 +0200 Subject: loplugin:indentation check for indent inside block look for places where the statements inside a block are not indented Change-Id: I0cbfa7e0b6fb194b2aff6fa7e070fb907d70ca2f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123885 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmlscript/source/xmldlg_imexp/xmldlg_import.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'xmlscript/source/xmldlg_imexp') diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx index 51fcc91d7467..ab9b47d0e619 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx @@ -1577,14 +1577,14 @@ void ImportContext::importDefaults( sal_Bool bVisible = true; if (getBoolAttr( &bVisible, "visible", xAttributes, _pImport->XMLNS_DIALOGS_UID ) && !bVisible) { - try - { - _xControlModel->setPropertyValue( "EnableVisible", makeAny( false ) ); - } - catch( Exception& ) - { - DBG_UNHANDLED_EXCEPTION("xmlscript.xmldlg"); - } + try + { + _xControlModel->setPropertyValue( "EnableVisible", makeAny( false ) ); + } + catch( Exception& ) + { + DBG_UNHANDLED_EXCEPTION("xmlscript.xmldlg"); + } } if (!importLongProperty( nBaseX, "PositionX", "left", xAttributes ) || -- cgit