#i10000#: XclImpChChart::ReadChProperties( XclImpStream& rStrm ) double declared and defined

This commit is contained in:
Jens-Heiner Rechtien 2009-05-25 15:57:28 +00:00
parent 3ffef1bb6b
commit bb6071dfa4
2 changed files with 1 additions and 8 deletions

View file

@ -3472,11 +3472,6 @@ void XclImpChChart::ReadChText( XclImpStream& rStrm )
}
}
void XclImpChChart::ReadChProperties( XclImpStream& rStrm )
{
rStrm >> maProps.mnFlags >> maProps.mnEmptyMode;
}
void XclImpChChart::Finalize()
{
// finalize series (must be done first)

View file

@ -1348,14 +1348,12 @@ public:
private:
/** Reads a CHSERIES group (data series source and formatting). */
void ReadChSeries( XclImpStream& rStrm );
/** Reads a CHPROPERTIES record. */
/** Reads a CHPROPERTIES record (global chart properties). */
void ReadChProperties( XclImpStream& rStrm );
/** Reads a CHAXESSET group (primary/secondary axes set). */
void ReadChAxesSet( XclImpStream& rStrm );
/** Reads a CHTEXT group (chart title and series/point captions). */
void ReadChText( XclImpStream& rStrm );
/** Reads a CHPROPERTIES record (global chart properties). */
void ReadChProperties( XclImpStream& rStrm );
/** Final processing after reading the entire chart data. */
void Finalize();