summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xfdatestyle.hxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfdatestyle.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx b/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx
index 143b00678e1e..07e5e12f1328 100644
--- a/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx
@@ -95,7 +95,7 @@ public:
void AddWeekDay( bool bLongFmt = true );
- void AddEra(bool bLongFmt = false);
+ void AddEra();
void AddHour( bool bLongFmt = true );
@@ -155,11 +155,11 @@ inline void XFDateStyle::AddWeekDay( bool bLongFmt )
m_aParts.AddStyle(part);
}
-inline void XFDateStyle::AddEra(bool bLongFmt)
+inline void XFDateStyle::AddEra()
{
XFDatePart *part = new XFDatePart();
part->SetPartType(enumXFDateEra);
- part->SetLongFmt(bLongFmt);
+ part->SetLongFmt(false);
m_aParts.AddStyle(part);
}