diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:16:13 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:25:39 +0200 |
commit | 6009d338236733006e69b184bfcfab355fa81493 (patch) | |
tree | dba220ce007e18eef94df5ea84762257e216f1fd /dbaccess/source/ui/relationdesign/RelationController.cxx | |
parent | e5434c67b183b0baae675321382d41ef3cc4f4e1 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I5cd8fd979fd4caa3d7cde599096627bfdd0dec7e
Diffstat (limited to 'dbaccess/source/ui/relationdesign/RelationController.cxx')
-rw-r--r-- | dbaccess/source/ui/relationdesign/RelationController.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/relationdesign/RelationController.cxx b/dbaccess/source/ui/relationdesign/RelationController.cxx index f884dccd4c7c..1478ee781d54 100644 --- a/dbaccess/source/ui/relationdesign/RelationController.cxx +++ b/dbaccess/source/ui/relationdesign/RelationController.cxx @@ -173,7 +173,7 @@ void ORelationController::Execute(sal_uInt16 _nId, const Sequence< PropertyValue ::comphelper::NamedValueCollection aWindowsData; saveTableWindows( aWindowsData ); getDataSource()->setPropertyValue( PROPERTY_LAYOUTINFORMATION, makeAny( aWindowsData.getPropertyValues() ) ); - setModified(sal_False); + setModified(false); } } catch ( const Exception& ) @@ -474,7 +474,7 @@ IMPL_LINK_NOARG_TYPED( ORelationController, OnThreadFinished, void*, void ) getView()->initialize(); // show the windows and fill with our information getView()->Invalidate(InvalidateFlags::NoErase); ClearUndoManager(); - setModified(sal_False); // and we are not modified yet + setModified(false); // and we are not modified yet if(m_vTableData.empty()) Execute(ID_BROWSER_ADDTABLE,Sequence<PropertyValue>()); |