[Libreoffice-commits] core.git: reportdesign/source
Julien Nabet
serval2412 at yahoo.fr
Sun May 24 14:06:46 PDT 2015
reportdesign/source/ui/inc/ScrollHelper.hxx | 2 +-
reportdesign/source/ui/report/ScrollHelper.cxx | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
New commits:
commit 33732900bfd925f56a2bcc95a18d7bef24664133
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sun May 24 23:05:38 2015 +0200
Typo: m_pReportDefintionMultiPlexer -> m_pReportDefinitionMultiPlexer
Change-Id: I90f2119d5b43e5d6efa18561a1b04d1c0178950e
diff --git a/reportdesign/source/ui/inc/ScrollHelper.hxx b/reportdesign/source/ui/inc/ScrollHelper.hxx
index 531e169..1ad1b58 100644
--- a/reportdesign/source/ui/inc/ScrollHelper.hxx
+++ b/reportdesign/source/ui/inc/ScrollHelper.hxx
@@ -55,7 +55,7 @@ namespace rptui
VclPtr<ODesignView> m_pParent;
VclPtr<OReportWindow> m_aReportWindow;
::rtl::Reference<comphelper::OPropertyChangeMultiplexer >
- m_pReportDefintionMultiPlexer; // listener for property changes
+ m_pReportDefinitionMultiPlexer; // listener for property changes
DECL_LINK( ScrollHdl, ScrollBar*);
Size ResizeScrollBars();
diff --git a/reportdesign/source/ui/report/ScrollHelper.cxx b/reportdesign/source/ui/report/ScrollHelper.cxx
index 02cbca0..71a28ae 100644
--- a/reportdesign/source/ui/report/ScrollHelper.cxx
+++ b/reportdesign/source/ui/report/ScrollHelper.cxx
@@ -51,7 +51,7 @@ OScrollWindowHelper::OScrollWindowHelper( ODesignView* _pDesignView)
,m_aCornerWin( VclPtr<ScrollBarBox>::Create(this) )
,m_pParent(_pDesignView)
,m_aReportWindow(VclPtr<rptui::OReportWindow>::Create(this,m_pParent))
- ,m_pReportDefintionMultiPlexer(NULL)
+ ,m_pReportDefinitionMultiPlexer(NULL)
{
SetMapMode( MapMode( MAP_100TH_MM ) );
@@ -74,8 +74,8 @@ OScrollWindowHelper::~OScrollWindowHelper()
void OScrollWindowHelper::dispose()
{
- if ( m_pReportDefintionMultiPlexer.is() )
- m_pReportDefintionMultiPlexer->dispose();
+ if ( m_pReportDefinitionMultiPlexer.is() )
+ m_pReportDefinitionMultiPlexer->dispose();
m_aHScroll.disposeAndClear();
m_aVScroll.disposeAndClear();
@@ -102,7 +102,7 @@ void OScrollWindowHelper::impl_initScrollBar( ScrollBar& _rScrollBar ) const
void OScrollWindowHelper::initialize()
{
uno::Reference<report::XReportDefinition> xReportDefinition = m_pParent->getController().getReportDefinition();
- m_pReportDefintionMultiPlexer = addStyleListener(xReportDefinition,this);
+ m_pReportDefinitionMultiPlexer = addStyleListener(xReportDefinition,this);
}
void OScrollWindowHelper::setTotalSize(sal_Int32 _nWidth ,sal_Int32 _nHeight)
More information about the Libreoffice-commits
mailing list