diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-16 09:32:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-16 11:19:21 +0200 |
commit | 0b021f89f60208877427eaf004e25db8be3832f6 (patch) | |
tree | 0eec9e17fbdbf1d99ee1ab258cea829c8218f861 /reportdesign | |
parent | e5d9b5ffc423cbb314cde1f66f7bebf4db30b1e6 (diff) |
rename some unnecessary contractions, Lft-Left, etc.
Change-Id: Idf4ab2d4d2550a02c0c50a981d94c67b111082a9
Reviewed-on: https://gerrit.libreoffice.org/41204
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/report/ReportSection.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/reportdesign/source/ui/report/ReportSection.cxx b/reportdesign/source/ui/report/ReportSection.cxx index 229e2506ed98..feeb8eb09903 100644 --- a/reportdesign/source/ui/report/ReportSection.cxx +++ b/reportdesign/source/ui/report/ReportSection.cxx @@ -221,11 +221,11 @@ void OReportSection::fill() uno::Reference<report::XReportDefinition> xReportDefinition = m_xSection->getReportDefinition(); const sal_Int32 nLeftMargin = getStyleProperty<sal_Int32>(xReportDefinition,PROPERTY_LEFTMARGIN); const sal_Int32 nRightMargin = getStyleProperty<sal_Int32>(xReportDefinition,PROPERTY_RIGHTMARGIN); - m_pPage->SetLftBorder(nLeftMargin); - m_pPage->SetRgtBorder(nRightMargin); + m_pPage->SetLeftBorder(nLeftMargin); + m_pPage->SetRightBorder(nRightMargin); // LLA: TODO -// m_pPage->SetUppBorder(-10000); +// m_pPage->SetUpperBorder(-10000); m_pView->SetDesignMode(); @@ -484,11 +484,11 @@ void OReportSection::_propertyChanged(const beans::PropertyChangeEvent& _rEvent) if ( _rEvent.PropertyName == PROPERTY_LEFTMARGIN ) { - m_pPage->SetLftBorder(nLeftMargin); + m_pPage->SetLeftBorder(nLeftMargin); } else if ( _rEvent.PropertyName == PROPERTY_RIGHTMARGIN ) { - m_pPage->SetRgtBorder(nRightMargin); + m_pPage->SetRightBorder(nRightMargin); } const Size aOldPageSize = m_pPage->GetSize(); sal_Int32 nNewHeight = 5*m_xSection->getHeight(); |