Kaydet (Commit) c72d69d4 authored tarafından Noel Grandin's avatar Noel Grandin

fix -Werror=shadow

after
    commit bbf134a2
    Date:   Tue Apr 24 13:36:34 2018 +0200
    SvTabListBox::SetTabs, pass count explicit

Change-Id: Iea41aa1c4708b6486ba9a306d3b9d02846e23d7a
üst 8776a895
......@@ -25,8 +25,8 @@ PlacesListBox_Impl::PlacesListBox_Impl( PlacesListBox* pParent, const OUString&
mpHeaderBar = VclPtr<HeaderBar>::Create( pParent, WB_BUTTONSTYLE | WB_BOTTOMBORDER );
mpHeaderBar->SetPosSizePixel( Point( 0, 0 ), Size( 600, 16 ) );
long aTabs[] = { 20, 600 };
SetTabs( SAL_N_ELEMENTS(aTabs), aTabs, MapUnit::MapPixel );
long aTabPositions[] = { 20, 600 };
SetTabs( SAL_N_ELEMENTS(aTabPositions), aTabPositions, MapUnit::MapPixel );
mpHeaderBar->InsertItem( COLUMN_NAME, rTitle, 600, HeaderBarItemBits::LEFT | HeaderBarItemBits::VCENTER );
Size aHeadSize = mpHeaderBar->GetSizePixel();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment