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 )
{
ScRange aRange;
if( pRangeData->IsReference( aRange ) )
maWQList.push_back( new XclImpWebQuery( aRange ) );
maWQList.push_back( XclImpWebQuery( aRange ) );
}
}
}
......
......@@ -31,7 +31,6 @@
#include <map>
#include <vector>
#include <memory>
#include <boost/ptr_container/ptr_vector.hpp>
#include <boost/noncopyable.hpp>
/* ============================================================================
......@@ -193,7 +192,7 @@ private:
// Web queries ================================================================
/** Stores the data of one web query. */
class XclImpWebQuery : private boost::noncopyable
class XclImpWebQuery
{
public:
explicit XclImpWebQuery( const ScRange& rDestRange );
......@@ -247,7 +246,7 @@ public:
void Apply();
private:
typedef boost::ptr_vector< XclImpWebQuery > XclImpWebQueryList;
typedef std::vector< XclImpWebQuery > XclImpWebQueryList;
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