summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/TableRowExchange.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/inc/TableRowExchange.hxx')
-rw-r--r--dbaccess/source/ui/inc/TableRowExchange.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/inc/TableRowExchange.hxx b/dbaccess/source/ui/inc/TableRowExchange.hxx
index 45fa74b79688..764a1822d806 100644
--- a/dbaccess/source/ui/inc/TableRowExchange.hxx
+++ b/dbaccess/source/ui/inc/TableRowExchange.hxx
@@ -22,16 +22,16 @@
#include <com/sun/star/beans/PropertyValue.hpp>
#include <cppuhelper/implbase2.hxx>
#include <svtools/transfer.hxx>
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace dbaui
{
class OTableRow;
class OTableRowExchange : public TransferableHelper
{
- ::std::vector< ::boost::shared_ptr<OTableRow> > m_vTableRow;
+ ::std::vector< std::shared_ptr<OTableRow> > m_vTableRow;
public:
- OTableRowExchange(const ::std::vector< ::boost::shared_ptr<OTableRow> >& _rvTableRow);
+ OTableRowExchange(const ::std::vector< std::shared_ptr<OTableRow> >& _rvTableRow);
protected:
virtual void AddSupportedFormats() SAL_OVERRIDE;
virtual bool GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& rDestDoc ) SAL_OVERRIDE;