diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-18 17:01:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-18 17:02:17 +0100 |
commit | 929baba5f08a59aeaf460d7c6b76238aca6c5d67 (patch) | |
tree | aeeebd2ae8f30b6687c388a449d16bf1133172e1 /include/avmedia/mediawindow.hxx | |
parent | 110bbaf0443acb9a4bfbbb7c8019442a99618347 (diff) |
Simplify MediaWindow::mpImpl
Change-Id: Ia466a08a8135a7f2e43278354c767be3a063550a
Diffstat (limited to 'include/avmedia/mediawindow.hxx')
-rw-r--r-- | include/avmedia/mediawindow.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/avmedia/mediawindow.hxx b/include/avmedia/mediawindow.hxx index 92bd696b1833..74ef95da9f75 100644 --- a/include/avmedia/mediawindow.hxx +++ b/include/avmedia/mediawindow.hxx @@ -22,6 +22,7 @@ #include <memory> #include <vector> +#include <boost/scoped_ptr.hpp> #include <tools/gen.hxx> #include <com/sun/star/media/ZoomLevel.hpp> #include <com/sun/star/media/XPlayer.hpp> @@ -118,7 +119,7 @@ namespace avmedia AVMEDIA_DLLPRIVATE MediaWindow& operator =( const MediaWindow& ); ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > mxIFace; - priv::MediaWindowImpl* mpImpl; + boost::scoped_ptr<priv::MediaWindowImpl> mpImpl; }; } |