summaryrefslogtreecommitdiff
path: root/cui/source/options/dbregister.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-02-16 11:33:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-02-16 19:50:35 +0100
commiteb5563e7e636a9856d4f1cc23d00a21193b9d0cc (patch)
tree23f2d0f58872a42ab4cbc15597211794b193c62b /cui/source/options/dbregister.cxx
parent11fab5aeaaa72012c63b2c812656a932ef0debf9 (diff)
Revert "loplugin:changetoolsgen in canvas..cui" and reapply
because I (a) forgot to insert parentheses which changes the meaning of some expressions and (b) I now use the AdjustFoo calls when changing unary operations, which reads much better This reverts commit f841dada1a5018897cce29ccf972da33ece4738c. Change-Id: Iff19e1fc99812c086b0a39b71a3f67b98e2f9c8f Reviewed-on: https://gerrit.libreoffice.org/49841 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui/source/options/dbregister.cxx')
-rw-r--r--cui/source/options/dbregister.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/dbregister.cxx b/cui/source/options/dbregister.cxx
index 0fbbce7611bd..2ab19ca73d15 100644
--- a/cui/source/options/dbregister.cxx
+++ b/cui/source/options/dbregister.cxx
@@ -133,11 +133,11 @@ DbRegistrationOptionsPage::DbRegistrationOptionsPage( vcl::Window* pParent, cons
rBar.SetSelectHdl( LINK( this, DbRegistrationOptionsPage, HeaderSelect_Impl ) );
rBar.SetEndDragHdl( LINK( this, DbRegistrationOptionsPage, HeaderEndDrag_Impl ) );
Size aSz;
- aSz.Width() = TAB_WIDTH1;
+ aSz.setWidth( TAB_WIDTH1 );
rBar.InsertItem( ITEMID_TYPE, m_aTypeText,
LogicToPixel( aSz, MapMode( MapUnit::MapAppFont ) ).Width(),
HeaderBarItemBits::LEFT | HeaderBarItemBits::VCENTER | HeaderBarItemBits::CLICKABLE | HeaderBarItemBits::UPARROW );
- aSz.Width() = TAB_WIDTH2;
+ aSz.setWidth( TAB_WIDTH2 );
rBar.InsertItem( ITEMID_PATH, m_aPathText,
LogicToPixel( aSz, MapMode( MapUnit::MapAppFont ) ).Width(),
HeaderBarItemBits::LEFT | HeaderBarItemBits::VCENTER );