diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-12-23 18:10:15 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-01-03 13:25:29 +0100 |
commit | 9937e0b53c5cfd6e5bfa7187b637642ab7d78e58 (patch) | |
tree | d753b5ef1b476fa437b65839bc5803d0e0f332fd /dbaccess/source | |
parent | 07875986a38f96e0a3fe33dcee9495a9c2594496 (diff) |
Fix typo in code
Change-Id: I9a2ce0edb615b53e579060d76898e4a8e491749c
Reviewed-on: https://gerrit.libreoffice.org/65829
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/ui/control/FieldDescControl.cxx | 4 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/FieldDescControl.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index 4e6acd9f851d..37296494d91f 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx @@ -132,10 +132,10 @@ OFieldDescControl::OFieldDescControl( vcl::Window* pParent, OTableDesignHelpBar* ,m_bRightAligned(false) ,pActFieldDescr(nullptr) { - Contruct(); + Construct(); } -void OFieldDescControl::Contruct() +void OFieldDescControl::Construct() { m_pVertScroll = VclPtr<ScrollBar>::Create(this, WB_VSCROLL | WB_REPEAT | WB_DRAG); m_pHorzScroll = VclPtr<ScrollBar>::Create(this, WB_HSCROLL | WB_REPEAT | WB_DRAG); diff --git a/dbaccess/source/ui/inc/FieldDescControl.hxx b/dbaccess/source/ui/inc/FieldDescControl.hxx index d5e74566156e..6a19023468fe 100644 --- a/dbaccess/source/ui/inc/FieldDescControl.hxx +++ b/dbaccess/source/ui/inc/FieldDescControl.hxx @@ -132,7 +132,7 @@ namespace dbaui void ScrollAllAggregates(); bool isTextFormat(const OFieldDescription* _pFieldDescr,sal_uInt32& _nFormatKey) const; - void Contruct(); + void Construct(); VclPtr<OPropNumericEditCtrl> CreateNumericControl(const char* pHelpId, short _nProperty, const OString& _sHelpId); VclPtr<FixedText> CreateText(const char* pTextRes); void InitializeControl(Control* _pControl,const OString& _sHelpId,bool _bAddChangeHandler); |