sd/source/ui/annotations/annotationmanager.cxx | 1 + sd/source/ui/annotations/annotationwindow.cxx | 1 + sd/source/ui/app/sdmod1.cxx | 1 + sd/source/ui/docshell/docshel3.cxx | 1 + sd/source/ui/framework/configuration/ConfigurationController.cxx | 1 + sd/source/ui/framework/module/ShellStackGuard.hxx | 1 + sd/source/ui/framework/module/ToolBarModule.hxx | 1 + sd/source/ui/framework/tools/FrameworkHelper.cxx | 1 + sd/source/ui/func/fuarea.cxx | 1 + sd/source/ui/func/fubullet.cxx | 1 + sd/source/ui/func/fuchar.cxx | 1 + sd/source/ui/func/fuconnct.cxx | 1 + sd/source/ui/func/fucopy.cxx | 1 + sd/source/ui/func/fucushow.cxx | 1 + sd/source/ui/func/fuinsert.cxx | 1 + sd/source/ui/func/fuinsfil.cxx | 1 + sd/source/ui/func/fuline.cxx | 1 + sd/source/ui/func/fulinend.cxx | 1 + sd/source/ui/func/fulink.cxx | 1 + sd/source/ui/func/fumeasur.cxx | 1 + sd/source/ui/func/fumorph.cxx | 1 + sd/source/ui/func/fuoaprms.cxx | 1 + sd/source/ui/func/fuolbull.cxx | 1 + sd/source/ui/func/fuoltext.cxx | 1 + sd/source/ui/func/fupage.cxx | 1 + sd/source/ui/func/fuparagr.cxx | 1 + sd/source/ui/func/fuprlout.cxx | 1 + sd/source/ui/func/fuprobjs.cxx | 1 + sd/source/ui/func/fuscale.cxx | 1 + sd/source/ui/func/fusldlg.cxx | 1 + sd/source/ui/func/fusnapln.cxx | 1 + sd/source/ui/func/futempl.cxx | 1 + sd/source/ui/func/futransf.cxx | 1 + sd/source/ui/func/futxtatt.cxx | 1 + sd/source/ui/func/fuvect.cxx | 1 + sd/source/ui/presenter/PresenterTextView.hxx | 1 + sd/source/ui/sidebar/MasterPagesSelector.cxx | 1 + sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx | 1 + sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx | 1 + sd/source/ui/slidesorter/shell/SlideSorterService.hxx | 1 + sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx | 1 + sd/source/ui/table/tablefunction.cxx | 1 + sd/source/ui/table/tableobjectbar.cxx | 1 + sd/source/ui/tools/PreviewRenderer.cxx | 1 + sd/source/ui/view/DocumentRenderer.cxx | 1 + sd/source/ui/view/MediaObjectBar.cxx | 1 + sd/source/ui/view/drtxtob1.cxx | 1 + sd/source/ui/view/drviews2.cxx | 1 + sd/source/ui/view/drviews3.cxx | 1 + sd/source/ui/view/drviews4.cxx | 1 + sd/source/ui/view/drviews9.cxx | 1 + sd/source/ui/view/drviewsa.cxx | 1 + sd/source/ui/view/drviewsf.cxx | 1 + sd/source/ui/view/outlnvs2.cxx | 1 + sd/source/ui/view/outlnvsh.cxx | 1 + sd/source/ui/view/sdview.cxx | 1 + sd/source/ui/view/sdview2.cxx | 1 + sd/source/ui/view/sdview3.cxx | 1 + 58 files changed, 58 insertions(+)
New commits: commit b71ba617e5c55ef4e98443fa10990b85665801fc Author: Caolán McNamara <caol...@redhat.com> Date: Thu Sep 24 10:22:58 2015 +0100 sd/source/ui/inc boost::scoped_ptr->std::unique_ptr Change-Id: Icf32ccd437c97dfa0ac3a569a3f2ec2b746ac300 Reviewed-on: https://gerrit.libreoffice.org/18822 Tested-by: Jenkins <c...@libreoffice.org> Reviewed-by: Caolán McNamara <caol...@redhat.com> Tested-by: Caolán McNamara <caol...@redhat.com> diff --git a/sd/source/ui/annotations/annotationmanager.cxx b/sd/source/ui/annotations/annotationmanager.cxx index beb7d16..780fb20 100644 --- a/sd/source/ui/annotations/annotationmanager.cxx +++ b/sd/source/ui/annotations/annotationmanager.cxx @@ -82,6 +82,7 @@ #include "optsitem.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; diff --git a/sd/source/ui/annotations/annotationwindow.cxx b/sd/source/ui/annotations/annotationwindow.cxx index 73dd9e8..fe4320c 100644 --- a/sd/source/ui/annotations/annotationwindow.cxx +++ b/sd/source/ui/annotations/annotationwindow.cxx @@ -86,6 +86,7 @@ #include "sdresid.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::sd; using namespace ::com::sun::star; diff --git a/sd/source/ui/app/sdmod1.cxx b/sd/source/ui/app/sdmod1.cxx index 99dfffd..3d431a3 100644 --- a/sd/source/ui/app/sdmod1.cxx +++ b/sd/source/ui/app/sdmod1.cxx @@ -60,6 +60,7 @@ #include "FactoryIds.hxx" #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> #include "slideshow.hxx" #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> diff --git a/sd/source/ui/docshell/docshel3.cxx b/sd/source/ui/docshell/docshel3.cxx index eb4ad85..a0d4531 100644 --- a/sd/source/ui/docshell/docshel3.cxx +++ b/sd/source/ui/docshell/docshel3.cxx @@ -57,6 +57,7 @@ #include "slideshow.hxx" #include "fuhhconv.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::beans; diff --git a/sd/source/ui/framework/configuration/ConfigurationController.cxx b/sd/source/ui/framework/configuration/ConfigurationController.cxx index 7d62e76..d6b221577 100644 --- a/sd/source/ui/framework/configuration/ConfigurationController.cxx +++ b/sd/source/ui/framework/configuration/ConfigurationController.cxx @@ -36,6 +36,7 @@ #include <osl/mutex.hxx> #include <vcl/svapp.hxx> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; diff --git a/sd/source/ui/framework/module/ShellStackGuard.hxx b/sd/source/ui/framework/module/ShellStackGuard.hxx index 7842bbc..f2a5f37 100644 --- a/sd/source/ui/framework/module/ShellStackGuard.hxx +++ b/sd/source/ui/framework/module/ShellStackGuard.hxx @@ -32,6 +32,7 @@ #include <vcl/idle.hxx> #include <cppuhelper/compbase.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> namespace { diff --git a/sd/source/ui/framework/module/ToolBarModule.hxx b/sd/source/ui/framework/module/ToolBarModule.hxx index 3215a75..cffc42e 100644 --- a/sd/source/ui/framework/module/ToolBarModule.hxx +++ b/sd/source/ui/framework/module/ToolBarModule.hxx @@ -29,6 +29,7 @@ #include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { class ViewShellBase; diff --git a/sd/source/ui/framework/tools/FrameworkHelper.cxx b/sd/source/ui/framework/tools/FrameworkHelper.cxx index c35a470..b715424 100644 --- a/sd/source/ui/framework/tools/FrameworkHelper.cxx +++ b/sd/source/ui/framework/tools/FrameworkHelper.cxx @@ -43,6 +43,7 @@ #include <osl/doublecheckedlocking.h> #include <osl/getglobalmutex.hxx> #include <tools/diagnose_ex.h> +#include <memory> #include <unordered_map> using namespace ::com::sun::star; diff --git a/sd/source/ui/func/fuarea.cxx b/sd/source/ui/func/fuarea.cxx index 33d9476..9b3164d 100644 --- a/sd/source/ui/func/fuarea.cxx +++ b/sd/source/ui/func/fuarea.cxx @@ -35,6 +35,7 @@ #include <svx/svxdlg.hxx> #include <svx/dialogs.hrc> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { TYPEINIT1( FuArea, FuPoor ); diff --git a/sd/source/ui/func/fubullet.cxx b/sd/source/ui/func/fubullet.cxx index 42482d3..0295ef3 100644 --- a/sd/source/ui/func/fubullet.cxx +++ b/sd/source/ui/func/fubullet.cxx @@ -39,6 +39,7 @@ #include <svx/dialogs.hrc> #include "drawview.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> #include "app.hrc" diff --git a/sd/source/ui/func/fuchar.cxx b/sd/source/ui/func/fuchar.cxx index 7ae1866..5dca0ec 100644 --- a/sd/source/ui/func/fuchar.cxx +++ b/sd/source/ui/func/fuchar.cxx @@ -35,6 +35,7 @@ #include "DrawDocShell.hxx" #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fuconnct.cxx b/sd/source/ui/func/fuconnct.cxx index 1ce1bc3..f9f445d 100644 --- a/sd/source/ui/func/fuconnct.cxx +++ b/sd/source/ui/func/fuconnct.cxx @@ -26,6 +26,7 @@ #include <svx/svxdlg.hxx> #include <svx/dialogs.hrc> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fucopy.cxx b/sd/source/ui/func/fucopy.cxx index 30501b5..8c47464 100644 --- a/sd/source/ui/func/fucopy.cxx +++ b/sd/source/ui/func/fucopy.cxx @@ -39,6 +39,7 @@ #include <sfx2/request.hxx> #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace com::sun::star; diff --git a/sd/source/ui/func/fucushow.cxx b/sd/source/ui/func/fucushow.cxx index b1843c4..3f62a81 100644 --- a/sd/source/ui/func/fucushow.cxx +++ b/sd/source/ui/func/fucushow.cxx @@ -32,6 +32,7 @@ #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fuinsert.cxx b/sd/source/ui/func/fuinsert.cxx index f7f1622..b4c2755 100644 --- a/sd/source/ui/func/fuinsert.cxx +++ b/sd/source/ui/func/fuinsert.cxx @@ -83,6 +83,7 @@ #include <vcl/svapp.hxx> #include "undo/undoobjects.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> #include "glob.hrc" #include <config_features.h> diff --git a/sd/source/ui/func/fuinsfil.cxx b/sd/source/ui/func/fuinsfil.cxx index bcbcabb..d93e58d 100644 --- a/sd/source/ui/func/fuinsfil.cxx +++ b/sd/source/ui/func/fuinsfil.cxx @@ -63,6 +63,7 @@ #include "Outliner.hxx" #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; diff --git a/sd/source/ui/func/fuline.cxx b/sd/source/ui/func/fuline.cxx index e95a0e8..74d224d 100644 --- a/sd/source/ui/func/fuline.cxx +++ b/sd/source/ui/func/fuline.cxx @@ -37,6 +37,7 @@ #include <svx/svxdlg.hxx> #include <svx/dialogs.hrc> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fulinend.cxx b/sd/source/ui/func/fulinend.cxx index 788b518..034109a 100644 --- a/sd/source/ui/func/fulinend.cxx +++ b/sd/source/ui/func/fulinend.cxx @@ -33,6 +33,7 @@ #include "View.hxx" #include "Window.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fulink.cxx b/sd/source/ui/func/fulink.cxx index 920f8b6..a1e9b12 100644 --- a/sd/source/ui/func/fulink.cxx +++ b/sd/source/ui/func/fulink.cxx @@ -30,6 +30,7 @@ #include "ViewShell.hxx" #include "app.hrc" #include <memory> +#include <boost/scoped_ptr.hpp> class SfxRequest; diff --git a/sd/source/ui/func/fumeasur.cxx b/sd/source/ui/func/fumeasur.cxx index aa8fcc9..69de5a5 100644 --- a/sd/source/ui/func/fumeasur.cxx +++ b/sd/source/ui/func/fumeasur.cxx @@ -26,6 +26,7 @@ #include <svx/svxdlg.hxx> #include <svx/dialogs.hrc> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fumorph.cxx b/sd/source/ui/func/fumorph.cxx index 0ed4ee9..c34e6cf 100644 --- a/sd/source/ui/func/fumorph.cxx +++ b/sd/source/ui/func/fumorph.cxx @@ -45,6 +45,7 @@ #include <basegfx/color/bcolor.hxx> #include <com/sun/star/drawing/LineStyle.hpp> #include <memory> +#include <boost/scoped_ptr.hpp> using namespace com::sun::star; diff --git a/sd/source/ui/func/fuoaprms.cxx b/sd/source/ui/func/fuoaprms.cxx index bc066e4..061f690 100644 --- a/sd/source/ui/func/fuoaprms.cxx +++ b/sd/source/ui/func/fuoaprms.cxx @@ -45,6 +45,7 @@ #include <tools/helpers.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; diff --git a/sd/source/ui/func/fuolbull.cxx b/sd/source/ui/func/fuolbull.cxx index fdfaa12..06d76b1 100644 --- a/sd/source/ui/func/fuolbull.cxx +++ b/sd/source/ui/func/fuolbull.cxx @@ -39,6 +39,7 @@ #include <svx/nbdtmgfact.hxx> #include <svx/svdoutl.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> using namespace svx::sidebar; namespace sd { diff --git a/sd/source/ui/func/fuoltext.cxx b/sd/source/ui/func/fuoltext.cxx index b8bd183..6938a4b 100644 --- a/sd/source/ui/func/fuoltext.cxx +++ b/sd/source/ui/func/fuoltext.cxx @@ -36,6 +36,7 @@ #include "OutlineViewShell.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> #include <stdio.h> diff --git a/sd/source/ui/func/fupage.cxx b/sd/source/ui/func/fupage.cxx index 52140e6..bf4fcef 100644 --- a/sd/source/ui/func/fupage.cxx +++ b/sd/source/ui/func/fupage.cxx @@ -68,6 +68,7 @@ #include "helpids.h" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace com::sun::star; diff --git a/sd/source/ui/func/fuparagr.cxx b/sd/source/ui/func/fuparagr.cxx index 7d8a313..f5c872c 100644 --- a/sd/source/ui/func/fuparagr.cxx +++ b/sd/source/ui/func/fuparagr.cxx @@ -35,6 +35,7 @@ #include "sdabstdlg.hxx" #include "sdattr.hrc" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fuprlout.cxx b/sd/source/ui/func/fuprlout.cxx index d4748e1..cbab83f 100644 --- a/sd/source/ui/func/fuprlout.cxx +++ b/sd/source/ui/func/fuprlout.cxx @@ -53,6 +53,7 @@ #include <editeng/editdata.hxx> #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fuprobjs.cxx b/sd/source/ui/func/fuprobjs.cxx index 07bccea..bdafd22 100644 --- a/sd/source/ui/func/fuprobjs.cxx +++ b/sd/source/ui/func/fuprobjs.cxx @@ -40,6 +40,7 @@ #include "unchss.hxx" #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fuscale.cxx b/sd/source/ui/func/fuscale.cxx index d832610..6697f6f 100644 --- a/sd/source/ui/func/fuscale.cxx +++ b/sd/source/ui/func/fuscale.cxx @@ -40,6 +40,7 @@ #include <sfx2/request.hxx> #include <svx/svxdlg.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fusldlg.cxx b/sd/source/ui/func/fusldlg.cxx index 3daffe3..633eac1 100644 --- a/sd/source/ui/func/fusldlg.cxx +++ b/sd/source/ui/func/fusldlg.cxx @@ -33,6 +33,7 @@ #include "optsitem.hxx" #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fusnapln.cxx b/sd/source/ui/func/fusnapln.cxx index c455db2..cca0a5d 100644 --- a/sd/source/ui/func/fusnapln.cxx +++ b/sd/source/ui/func/fusnapln.cxx @@ -36,6 +36,7 @@ #include "app.hrc" #include <svx/svdpagv.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/futempl.cxx b/sd/source/ui/func/futempl.cxx index 3d42212..199a260 100644 --- a/sd/source/ui/func/futempl.cxx +++ b/sd/source/ui/func/futempl.cxx @@ -66,6 +66,7 @@ #include "helpids.h" #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace com::sun::star::uno; using namespace com::sun::star::container; diff --git a/sd/source/ui/func/futransf.cxx b/sd/source/ui/func/futransf.cxx index 5bcc17a..671b23a 100644 --- a/sd/source/ui/func/futransf.cxx +++ b/sd/source/ui/func/futransf.cxx @@ -32,6 +32,7 @@ #include <svx/svxdlg.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/futxtatt.cxx b/sd/source/ui/func/futxtatt.cxx index 367b1ec..60f0bb5 100644 --- a/sd/source/ui/func/futxtatt.cxx +++ b/sd/source/ui/func/futxtatt.cxx @@ -27,6 +27,7 @@ #include "ViewShell.hxx" #include "drawdoc.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/func/fuvect.cxx b/sd/source/ui/func/fuvect.cxx index 1beb9ce..abe47ca 100644 --- a/sd/source/ui/func/fuvect.cxx +++ b/sd/source/ui/func/fuvect.cxx @@ -30,6 +30,7 @@ #include "sdresid.hxx" #include "sdabstdlg.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/presenter/PresenterTextView.hxx b/sd/source/ui/presenter/PresenterTextView.hxx index 788835c..6a0a93d 100644 --- a/sd/source/ui/presenter/PresenterTextView.hxx +++ b/sd/source/ui/presenter/PresenterTextView.hxx @@ -27,6 +27,7 @@ #include <cppuhelper/implbase.hxx> #include <boost/noncopyable.hpp> #include <memory> +#include <boost/scoped_ptr.hpp> namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; diff --git a/sd/source/ui/sidebar/MasterPagesSelector.cxx b/sd/source/ui/sidebar/MasterPagesSelector.cxx index 93d93850..19d6ad7 100644 --- a/sd/source/ui/sidebar/MasterPagesSelector.cxx +++ b/sd/source/ui/sidebar/MasterPagesSelector.cxx @@ -59,6 +59,7 @@ #include <sfx2/request.hxx> #include <svl/itempool.hxx> #include <sfx2/sidebar/Theme.hxx> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star::text; diff --git a/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx b/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx index 2cc53a3..1c4bbc6 100644 --- a/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx +++ b/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx @@ -31,6 +31,7 @@ #include <tools/gen.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { namespace slidesorter { class SlideSorter; diff --git a/sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx b/sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx index f5c5565..9a6e463 100644 --- a/sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx +++ b/sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx @@ -28,6 +28,7 @@ #include <vcl/mapmod.hxx> #include <vector> #include <utility> +#include <boost/scoped_ptr.hpp> class Size; diff --git a/sd/source/ui/slidesorter/shell/SlideSorterService.hxx b/sd/source/ui/slidesorter/shell/SlideSorterService.hxx index c29b28f..b001f5e 100644 --- a/sd/source/ui/slidesorter/shell/SlideSorterService.hxx +++ b/sd/source/ui/slidesorter/shell/SlideSorterService.hxx @@ -33,6 +33,7 @@ #include <cppuhelper/propshlp.hxx> #include <boost/noncopyable.hpp> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { namespace slidesorter { diff --git a/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx b/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx index de7f06e..1e4bdd8 100644 --- a/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx +++ b/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx @@ -29,6 +29,7 @@ #include <boost/noncopyable.hpp> #include <memory> #include <vector> +#include <boost/scoped_ptr.hpp> class Rectangle; diff --git a/sd/source/ui/table/tablefunction.cxx b/sd/source/ui/table/tablefunction.cxx index 89480fd..f588159 100644 --- a/sd/source/ui/table/tablefunction.cxx +++ b/sd/source/ui/table/tablefunction.cxx @@ -64,6 +64,7 @@ #include "undo/undoobjects.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::sd; using namespace sdr::table; diff --git a/sd/source/ui/table/tableobjectbar.cxx b/sd/source/ui/table/tableobjectbar.cxx index f13affa..44b33af 100644 --- a/sd/source/ui/table/tableobjectbar.cxx +++ b/sd/source/ui/table/tableobjectbar.cxx @@ -51,6 +51,7 @@ #include "tableobjectbar.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace sd; using namespace sd::ui::table; diff --git a/sd/source/ui/tools/PreviewRenderer.cxx b/sd/source/ui/tools/PreviewRenderer.cxx index e7d41f5..1aedf81 100644 --- a/sd/source/ui/tools/PreviewRenderer.cxx +++ b/sd/source/ui/tools/PreviewRenderer.cxx @@ -37,6 +37,7 @@ #include <svx/sdr/contact/viewcontact.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; diff --git a/sd/source/ui/view/DocumentRenderer.cxx b/sd/source/ui/view/DocumentRenderer.cxx index cf70343..0f78fda 100644 --- a/sd/source/ui/view/DocumentRenderer.cxx +++ b/sd/source/ui/view/DocumentRenderer.cxx @@ -52,6 +52,7 @@ #include <unotools/moduleoptions.hxx> #include <vector> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; diff --git a/sd/source/ui/view/MediaObjectBar.cxx b/sd/source/ui/view/MediaObjectBar.cxx index e24ca7c..2ea5f24 100644 --- a/sd/source/ui/view/MediaObjectBar.cxx +++ b/sd/source/ui/view/MediaObjectBar.cxx @@ -40,6 +40,7 @@ #include "sdresid.hxx" #include "drawdoc.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace sd; diff --git a/sd/source/ui/view/drtxtob1.cxx b/sd/source/ui/view/drtxtob1.cxx index a7ca40f..f0623d9 100644 --- a/sd/source/ui/view/drtxtob1.cxx +++ b/sd/source/ui/view/drtxtob1.cxx @@ -73,6 +73,7 @@ #include "futext.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx index 875a634..7d4cc30 100644 --- a/sd/source/ui/view/drviews2.cxx +++ b/sd/source/ui/view/drviews2.cxx @@ -172,6 +172,7 @@ #include "ViewShellBase.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace { const char CustomAnimationPanelId[] = "CustomAnimationPanel"; diff --git a/sd/source/ui/view/drviews3.cxx b/sd/source/ui/view/drviews3.cxx index 53983b9..ea1b141 100644 --- a/sd/source/ui/view/drviews3.cxx +++ b/sd/source/ui/view/drviews3.cxx @@ -85,6 +85,7 @@ #include <editeng/lspcitem.hxx> #include <editeng/ulspitem.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star::uno; using namespace ::com::sun::star::drawing::framework; diff --git a/sd/source/ui/view/drviews4.cxx b/sd/source/ui/view/drviews4.cxx index 0f0ea32..0f19ec7 100644 --- a/sd/source/ui/view/drviews4.cxx +++ b/sd/source/ui/view/drviews4.cxx @@ -64,6 +64,7 @@ #include <navigatr.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/view/drviews9.cxx b/sd/source/ui/view/drviews9.cxx index c3d925c..5685ba4 100644 --- a/sd/source/ui/view/drviews9.cxx +++ b/sd/source/ui/view/drviews9.cxx @@ -61,6 +61,7 @@ #include <com/sun/star/gallery/GalleryItemType.hpp> #include <com/sun/star/drawing/LineStyle.hpp> #include <memory> +#include <boost/scoped_ptr.hpp> using namespace com::sun::star; diff --git a/sd/source/ui/view/drviewsa.cxx b/sd/source/ui/view/drviewsa.cxx index 8508636..e1cbfd9 100644 --- a/sd/source/ui/view/drviewsa.cxx +++ b/sd/source/ui/view/drviewsa.cxx @@ -70,6 +70,7 @@ #include <boost/bind.hpp> #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; diff --git a/sd/source/ui/view/drviewsf.cxx b/sd/source/ui/view/drviewsf.cxx index dd39b08..2a41d2c 100644 --- a/sd/source/ui/view/drviewsf.cxx +++ b/sd/source/ui/view/drviewsf.cxx @@ -64,6 +64,7 @@ #include <svx/nbdtmgfact.hxx> #include <svx/nbdtmg.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> using namespace svx::sidebar; using namespace ::com::sun::star; diff --git a/sd/source/ui/view/outlnvs2.cxx b/sd/source/ui/view/outlnvs2.cxx index 59baafb..c180b45 100644 --- a/sd/source/ui/view/outlnvs2.cxx +++ b/sd/source/ui/view/outlnvs2.cxx @@ -64,6 +64,7 @@ #include "DrawViewShell.hxx" #include "slideshow.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star::uno; using namespace ::com::sun::star::presentation; diff --git a/sd/source/ui/view/outlnvsh.cxx b/sd/source/ui/view/outlnvsh.cxx index 875ff5f..1767a01 100644 --- a/sd/source/ui/view/outlnvsh.cxx +++ b/sd/source/ui/view/outlnvsh.cxx @@ -87,6 +87,7 @@ #include "framework/FrameworkHelper.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; diff --git a/sd/source/ui/view/sdview.cxx b/sd/source/ui/view/sdview.cxx index 18867d3..cf0c6d04b 100644 --- a/sd/source/ui/view/sdview.cxx +++ b/sd/source/ui/view/sdview.cxx @@ -95,6 +95,7 @@ #include <memory> #include <numeric> +#include <boost/scoped_ptr.hpp> using namespace com::sun::star; using namespace com::sun::star::uno; diff --git a/sd/source/ui/view/sdview2.cxx b/sd/source/ui/view/sdview2.cxx index bd92d8a..612d585 100644 --- a/sd/source/ui/view/sdview2.cxx +++ b/sd/source/ui/view/sdview2.cxx @@ -66,6 +66,7 @@ #include "slideshow.hxx" #include <memory> +#include <boost/scoped_ptr.hpp> namespace sd { diff --git a/sd/source/ui/view/sdview3.cxx b/sd/source/ui/view/sdview3.cxx index 38020de..0380bb9 100644 --- a/sd/source/ui/view/sdview3.cxx +++ b/sd/source/ui/view/sdview3.cxx @@ -77,6 +77,7 @@ #include <svx/sdrhittesthelper.hxx> #include <svx/xbtmpit.hxx> #include <memory> +#include <boost/scoped_ptr.hpp> // - Namespaces -
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits