summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2013-08-31 17:50:25 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2013-08-31 22:41:10 +0200
commitbf42b6f9f51b4bc66e267ae24c87ac79122825cc (patch)
tree449f642fc53e3d654ae36a39877efc41a8b74fcc /lotuswordpro
parent3f84d81412f123bda0dde57c4e52abe9f49f58af (diff)
fdo#62475 - remove visual noise
This is a follow up commit to - 22d1beb78a475e4846af945afde1c4d6c263b5d6 - 1c7af455ab9345304a7ac48ce2e0310de2ac8a75 Change-Id: I102685391125f3b4f7bdf838f8bd17a2283d558d
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpnumericfmt.hxx12
1 files changed, 8 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpnumericfmt.hxx b/lotuswordpro/source/filter/lwpnumericfmt.hxx
index 502af9db97fe..21314995cfc9 100644
--- a/lotuswordpro/source/filter/lwpnumericfmt.hxx
+++ b/lotuswordpro/source/filter/lwpnumericfmt.hxx
@@ -57,10 +57,7 @@
* @file
* For LWP filter architecture prototype - table object
*/
-/*************************************************************************
- * Change History
- Mar 2005 Created
- ************************************************************************/
+
#ifndef _LWPNUMBERICFMT_HXX
#define _LWPNUMBERICFMT_HXX
@@ -85,11 +82,13 @@ public:
sal_Bool IsDefaultPrefix(){ return !(cSubFlags&SF_OVER_PREFIX); }
sal_Bool IsDefaultSuffix(){ return !(cSubFlags&SF_OVER_SUFFIX); }
LwpColor GetColor();
+
protected:
LwpColor cColor;
LwpAtomHolder cPrefix;
LwpAtomHolder cSuffix;
sal_uInt16 cSubFlags;
+
enum // for cSubFlags
{
SF_OVER_PREFIX = 0x0001,
@@ -188,6 +187,7 @@ public:
String GetCurrencySymbol(sal_uInt16 nFormat);
sal_Bool IsShowSpace(sal_uInt16 nFormat);
sal_Bool IsSymbolPost(sal_uInt16 nFormat);
+
private:
std::map<sal_uInt16,LwpCurrencyInfo> m_aCurrencyInfo;
void InitCurrencySymbol()
@@ -254,6 +254,7 @@ public:
sal_Bool IsNegativeOverridden(void);
sal_Bool IsZeroOverridden(void);
XFStyle* Convert();
+
private:
LwpObjectStream * m_pObjStrm;
@@ -286,11 +287,13 @@ LwpNumericFormat::IsDecimalPlacesOverridden(void)
{
return (cFlags & NF_OVER_DECIMAL_PLACES) != 0;
}
+
inline sal_Bool
LwpNumericFormat::IsNegativeOverridden(void)
{
return (cFlags & NF_OVER_NEGATIVE) != 0;
}
+
inline sal_Bool
LwpNumericFormat::IsZeroOverridden(void)
{
@@ -306,6 +309,7 @@ public:
~LwpLayoutNumerics(){}
XFStyle* Convert();
virtual void Read();
+
protected:
LwpNumericFormat cNumerics;
};