diff options
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/PlacesListBox.hxx | 4 | ||||
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/office/PlacesListBox.hxx b/fpicker/source/office/PlacesListBox.hxx index 4dd95a414e11..8fa24beb2907 100644 --- a/fpicker/source/office/PlacesListBox.hxx +++ b/fpicker/source/office/PlacesListBox.hxx @@ -11,13 +11,13 @@ #include <iodlg.hxx> -#include <boost/shared_ptr.hpp> #include <svtools/place.hxx> #include <svtools/svtabbx.hxx> +#include <memory> #include <vector> -typedef boost::shared_ptr< Place > PlacePtr; +typedef std::shared_ptr< Place > PlacePtr; class PlacesListBox; class PlacesListBox_Impl : public SvHeaderTabListBox diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index e706f0bbd2e4..370b2e7d2ad4 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -430,7 +430,7 @@ SvtFileDialog::~SvtFileDialog() } } - boost::shared_ptr<comphelper::ConfigurationChanges> batch(comphelper::ConfigurationChanges::create(m_context)); + std::shared_ptr<comphelper::ConfigurationChanges> batch(comphelper::ConfigurationChanges::create(m_context)); officecfg::Office::Common::Misc::FilePickerPlacesUrls::set(placesUrlsList, batch, m_context); officecfg::Office::Common::Misc::FilePickerPlacesNames::set(placesNamesList, batch, m_context); batch->commit(); |