Kaydet (Commit) d14b6230 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:defaultparams

Change-Id: Ia29fc2a24abff6faa2260094822ec477e1d62add
üst 7d603d97
......@@ -413,7 +413,7 @@ void OFieldExpressionControl::lateInit()
// not the first call
RowRemoved(0, GetRowCount());
RowInserted(0, m_aGroupPositions.size(), true);
RowInserted(0, m_aGroupPositions.size());
}
......@@ -929,7 +929,7 @@ void OFieldExpressionControl::InsertRows( long nRow )
}
}
RowInserted( nRow, nSize, true );
RowInserted( nRow, nSize );
}
Size OFieldExpressionControl::GetOptimalSize() const
......@@ -969,7 +969,7 @@ OGroupsSortingDialog::OGroupsSortingDialog(vcl::Window* _pParent, bool _bReadOnl
{
pControlsLst[i]->SetGetFocusHdl(LINK(this, OGroupsSortingDialog, OnControlFocusGot));
pControlsLst[i]->SetLoseFocusHdl(LINK(this, OGroupsSortingDialog, OnControlFocusLost));
pControlsLst[i]->Show(true);
pControlsLst[i]->Show();
}
for (size_t i = 0; i < (sizeof (pControlsLst) / sizeof (pControlsLst[0])) - 1; ++i)
......
......@@ -70,7 +70,7 @@ OReportWindow::OReportWindow(OScrollWindowHelper* _pParent,ODesignView* _pView)
m_aHRuler->Show();
m_aHRuler->Activate();
m_aHRuler->SetPagePos(0);
m_aHRuler->SetPagePos();
m_aHRuler->SetBorders();
m_aHRuler->SetIndents();
m_aHRuler->SetMargin1();
......
......@@ -66,7 +66,7 @@ OStartMarker::OStartMarker(OSectionWindow* _pParent,const OUString& _sColorEntry
m_aImage->Show();
m_aVRuler->Show();
m_aVRuler->Activate();
m_aVRuler->SetPagePos(0);
m_aVRuler->SetPagePos();
m_aVRuler->SetBorders();
m_aVRuler->SetIndents();
m_aVRuler->SetMargin1();
......
......@@ -841,7 +841,7 @@ bool DlgEdFuncSelect::MouseButtonDown( const MouseEvent& rMEvt )
}
else
{
m_rView.SdrBeginTextEdit( aVEvt.pRootObj,m_rView.GetSdrPageView(),m_pParent, false );
m_rView.SdrBeginTextEdit( aVEvt.pRootObj,m_rView.GetSdrPageView(),m_pParent );
}
}
......
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