diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-12 15:09:51 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-14 10:52:47 +0200 |
commit | 56af9ab6bb38f8b795295080308cdab7b97e8acc (patch) | |
tree | cf11dd67ccc8c8feee2d06202b056d5da211f427 /dbaccess/source/ui/control | |
parent | 4c6d1a2636941c559d78fcac36125ba1374330f9 (diff) |
loplugin: defaultparams
Change-Id: Ia66788f5db2da8c6259cd08f655b3cb7cb12ed59
Diffstat (limited to 'dbaccess/source/ui/control')
-rw-r--r-- | dbaccess/source/ui/control/FieldDescControl.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/control/tabletree.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index e953a25f7238..6440a2c3b2bf 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx @@ -926,7 +926,7 @@ void OFieldDescControl::ActivateAggregate( EControlType eType ) pFormatText = CreateText(STR_FORMAT); pFormatSample = VclPtr<OPropEditCtrl>::Create( this, STR_HELP_FORMAT_CODE, -1, WB_BORDER ); - pFormatSample->SetReadOnly(true); + pFormatSample->SetReadOnly(); pFormatSample->Enable(false); InitializeControl(pFormatSample,HID_TAB_ENT_FORMAT_SAMPLE,false); diff --git a/dbaccess/source/ui/control/tabletree.cxx b/dbaccess/source/ui/control/tabletree.cxx index 7afce2ecbd77..1b23471a46d9 100644 --- a/dbaccess/source/ui/control/tabletree.cxx +++ b/dbaccess/source/ui/control/tabletree.cxx @@ -394,7 +394,7 @@ void OTableTreeListBox::implEmphasize(SvTreeListEntry* _pEntry, bool _bChecked, { // remove the mark for all ancestors of the entry if (GetModel()->HasParent(_pEntry)) - implEmphasize(GetParent(_pEntry), false, false, true); + implEmphasize(GetParent(_pEntry), false, false); } } |