[Libreoffice-commits] .: sc/source

Kohei Yoshida kohei at kemper.freedesktop.org
Tue Mar 1 17:54:40 PST 2011


 sc/source/filter/inc/xichart.hxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit c242fe82a005562b13bd13b297238dcbb166e134
Author: Kohei Yoshida <kyoshida at novell.com>
Date:   Tue Mar 1 20:52:26 2011 -0500

    Another one on ScfRefMap to std::map conversion.
    
    Is this the last one?

diff --git a/sc/source/filter/inc/xichart.hxx b/sc/source/filter/inc/xichart.hxx
index 2eeedab..f16883e 100644
--- a/sc/source/filter/inc/xichart.hxx
+++ b/sc/source/filter/inc/xichart.hxx
@@ -1422,9 +1422,9 @@ private:
     XDiagramRef         CreateDiagram() const;
 
 private:
-    typedef ::std::vector< XclImpChSeriesRef >                  XclImpChSeriesVec;
-    typedef ScfRefMap< XclChDataPointPos, XclImpChDataFormat >  XclImpChDataFormatMap;
-    typedef ::boost::ptr_map<sal_uInt16, XclImpChText>          XclImpChTextMap;
+    typedef ::std::vector< XclImpChSeriesRef >                   XclImpChSeriesVec;
+    typedef ::std::map<XclChDataPointPos, XclImpChDataFormatRef> XclImpChDataFormatMap;
+    typedef ::boost::ptr_map<sal_uInt16, XclImpChText>           XclImpChTextMap;
 
     XclChRectangle      maRect;             /// Position of the chart on the sheet (CHCHART record).
     XclImpChSeriesVec   maSeries;           /// List of series data (CHSERIES groups).


More information about the Libreoffice-commits mailing list