From 579e5624fa3740ff79d99607bffabc9ba2d80c1b Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 21 Dec 2010 18:03:28 -0500 Subject: Removed ScSharedTokenRef and replaced it with ScTokenRef. ScSharedTokenRef was implemented by boost::shared_ptr, only because SimpleIntrusiveReference which the original ScTokenRef was implemented by could not be used with STL. Now that ScTokenRef is implemented by intrusive_ptr, we no longer need ScSharedTokenRef. --- sc/inc/chart2uno.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/inc/chart2uno.hxx') diff --git a/sc/inc/chart2uno.hxx b/sc/inc/chart2uno.hxx index c2a54bdfa745..eddf28541b9a 100644 --- a/sc/inc/chart2uno.hxx +++ b/sc/inc/chart2uno.hxx @@ -320,7 +320,7 @@ class ScChart2DataSequence : public public: explicit ScChart2DataSequence( ScDocument* pDoc, const com::sun::star::uno::Reference< com::sun::star::chart2::data::XDataProvider >& xDP, - ::std::vector* pTokens, bool bIncludeHiddenCells ); + ::std::vector* pTokens, bool bIncludeHiddenCells ); virtual ~ScChart2DataSequence(); virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ); @@ -476,7 +476,7 @@ private: void RebuildDataCache(); - sal_Int32 FillCacheFromExternalRef(const ScSharedTokenRef& pToken); + sal_Int32 FillCacheFromExternalRef(const ScTokenRef& pToken); void UpdateTokensFromRanges(const ScRangeList& rRanges); @@ -525,7 +525,7 @@ private: sal_Bool m_bIncludeHiddenCells; // internals - typedef ::std::auto_ptr< ::std::vector > TokenListPtr; + typedef ::std::auto_ptr< ::std::vector > TokenListPtr; typedef ::std::auto_ptr< ::std::vector > RangeIndexMapPtr; typedef ::std::auto_ptr ExtRefListenerPtr; -- cgit