Kaydet (Commit) 4d427eb6 authored tarafından Noel Grandin's avatar Noel Grandin

sc: boost::ptr_vector->std::vector

Change-Id: I4ab69d0d8cbbadf0e09854bcf5efefa931566a8d
üst 117ded60
...@@ -1024,7 +1024,7 @@ void XclImpWebQueryBuffer::ReadQsi( XclImpStream& rStrm ) ...@@ -1024,7 +1024,7 @@ void XclImpWebQueryBuffer::ReadQsi( XclImpStream& rStrm )
{ {
ScRange aRange; ScRange aRange;
if( pRangeData->IsReference( aRange ) ) if( pRangeData->IsReference( aRange ) )
maWQList.push_back( new XclImpWebQuery( aRange ) ); maWQList.push_back( XclImpWebQuery( aRange ) );
} }
} }
} }
......
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#include <map> #include <map>
#include <vector> #include <vector>
#include <memory> #include <memory>
#include <boost/ptr_container/ptr_vector.hpp>
#include <boost/noncopyable.hpp> #include <boost/noncopyable.hpp>
/* ============================================================================ /* ============================================================================
...@@ -193,7 +192,7 @@ private: ...@@ -193,7 +192,7 @@ private:
// Web queries ================================================================ // Web queries ================================================================
/** Stores the data of one web query. */ /** Stores the data of one web query. */
class XclImpWebQuery : private boost::noncopyable class XclImpWebQuery
{ {
public: public:
explicit XclImpWebQuery( const ScRange& rDestRange ); explicit XclImpWebQuery( const ScRange& rDestRange );
...@@ -247,7 +246,7 @@ public: ...@@ -247,7 +246,7 @@ public:
void Apply(); void Apply();
private: private:
typedef boost::ptr_vector< XclImpWebQuery > XclImpWebQueryList; typedef std::vector< XclImpWebQuery > XclImpWebQueryList;
XclImpWebQueryList maWQList; /// List of the web query objects. XclImpWebQueryList maWQList; /// List of the web query objects.
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment