diff options
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/controls/unocontrolcontainer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/controls/unocontrolcontainer.cxx b/toolkit/source/controls/unocontrolcontainer.cxx index 6f5e38f51665..068b62ab2ce5 100644 --- a/toolkit/source/controls/unocontrolcontainer.cxx +++ b/toolkit/source/controls/unocontrolcontainer.cxx @@ -36,7 +36,7 @@ #include <limits> #include <map> -#include <boost/shared_ptr.hpp> +#include <memory> #include <com/sun/star/awt/VclWindowPeerAttribute.hpp> using namespace ::com::sun::star; @@ -65,7 +65,7 @@ class UnoControlHolderList public: typedef sal_Int32 ControlIdentifier; private: - typedef ::boost::shared_ptr< UnoControlHolder > ControlInfo; + typedef std::shared_ptr< UnoControlHolder > ControlInfo; typedef ::std::map< ControlIdentifier, ControlInfo > ControlMap; private: |