summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpnumericfmt.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpnumericfmt.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpnumericfmt.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/lotuswordpro/source/filter/lwpnumericfmt.hxx b/lotuswordpro/source/filter/lwpnumericfmt.hxx
index 9b3a4d40d046..74b9587ed3b9 100644
--- a/lotuswordpro/source/filter/lwpnumericfmt.hxx
+++ b/lotuswordpro/source/filter/lwpnumericfmt.hxx
@@ -252,10 +252,10 @@ public:
~LwpNumericFormat(){}
void Read();
static bool IsCurrencyFormat(sal_uInt16 Format);
- sal_uInt16 GetDecimalPlaces(void);
- bool IsDecimalPlacesOverridden(void);
- bool IsNegativeOverridden(void);
- bool IsZeroOverridden(void);
+ sal_uInt16 GetDecimalPlaces();
+ bool IsDecimalPlacesOverridden();
+ bool IsNegativeOverridden();
+ bool IsZeroOverridden();
XFStyle* Convert();
private:
@@ -286,19 +286,19 @@ private:
};
inline bool
-LwpNumericFormat::IsDecimalPlacesOverridden(void)
+LwpNumericFormat::IsDecimalPlacesOverridden()
{
return (cFlags & NF_OVER_DECIMAL_PLACES) != 0;
}
inline bool
-LwpNumericFormat::IsNegativeOverridden(void)
+LwpNumericFormat::IsNegativeOverridden()
{
return (cFlags & NF_OVER_NEGATIVE) != 0;
}
inline bool
-LwpNumericFormat::IsZeroOverridden(void)
+LwpNumericFormat::IsZeroOverridden()
{
return (cFlags & NF_OVER_ZERO) != 0;
}