summaryrefslogtreecommitdiff
path: root/sw/source/uibase
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 10:43:28 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 12:27:43 +0200
commit8581d880f8aa8c2be15c875db291cebbb42841c7 (patch)
tree2cbae7247ebf5a47b9e9e59d47f0ab9dc38a02d2 /sw/source/uibase
parent316d68416dfee64d54ecaa4839a4045a4f205c4d (diff)
pack a few more classes
Change-Id: Ia7870d1d0d91de213727116ccda5b41913223866 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95097 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase')
-rw-r--r--sw/source/uibase/inc/numfmtlb.hxx6
-rw-r--r--sw/source/uibase/utlui/numfmtlb.cxx8
2 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/uibase/inc/numfmtlb.hxx b/sw/source/uibase/inc/numfmtlb.hxx
index f4f75e32d1d4..1fedd19c1157 100644
--- a/sw/source/uibase/inc/numfmtlb.hxx
+++ b/sw/source/uibase/inc/numfmtlb.hxx
@@ -28,12 +28,12 @@ class SwView;
class SW_DLLPUBLIC SwNumFormatBase
{
protected:
- SvNumFormatType nCurrFormatType;
- bool mbCurrFormatTypeNeedsInit;
sal_Int32 nStdEntry;
- bool bOneArea;
sal_uInt32 nDefFormat;
+ SvNumFormatType nCurrFormatType;
LanguageType eCurLanguage;
+ bool bOneArea;
+ bool mbCurrFormatTypeNeedsInit;
bool bShowLanguageControl; //determine whether the language control has
//to be shown in the number format dialog
bool bUseAutomaticLanguage;//determine whether language is automatically assigned
diff --git a/sw/source/uibase/utlui/numfmtlb.cxx b/sw/source/uibase/utlui/numfmtlb.cxx
index 4b4b6acb799a..a46bf67e9187 100644
--- a/sw/source/uibase/utlui/numfmtlb.cxx
+++ b/sw/source/uibase/utlui/numfmtlb.cxx
@@ -114,11 +114,11 @@ double SwNumFormatBase::GetDefValue(const SvNumFormatType nFormatType)
}
SwNumFormatBase::SwNumFormatBase()
- : nCurrFormatType(SvNumFormatType::ALL)
- , mbCurrFormatTypeNeedsInit(true)
- , nStdEntry(0)
- , bOneArea(false)
+ : nStdEntry(0)
, nDefFormat(0)
+ , nCurrFormatType(SvNumFormatType::ALL)
+ , bOneArea(false)
+ , mbCurrFormatTypeNeedsInit(true)
, bShowLanguageControl(false)
, bUseAutomaticLanguage(true)
{