summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-18 17:01:35 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-18 17:02:17 +0100
commit929baba5f08a59aeaf460d7c6b76238aca6c5d67 (patch)
treeaeeebd2ae8f30b6687c388a449d16bf1133172e1 /include
parent110bbaf0443acb9a4bfbbb7c8019442a99618347 (diff)
Simplify MediaWindow::mpImpl
Change-Id: Ia466a08a8135a7f2e43278354c767be3a063550a
Diffstat (limited to 'include')
-rw-r--r--include/avmedia/mediawindow.hxx3
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;
};
}