summaryrefslogtreecommitdiff
path: root/canvas
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-09 18:00:33 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-10 23:25:22 +0200
commit7aa9f045387a95d0b1a516f917fbcd23e0578902 (patch)
tree4ca3f1d4d9240a7236ac89cd5ab374c149f7c4d8 /canvas
parent2302a5ae5625c2ed3a5e7286940d32c7c176d1d2 (diff)
do not include boost/utility.hpp
It just includes a bunch of other boost headers; mostly we need boost/noncopyable.hpp so include that directly. This eliminates 831 MB(!) of boost/preprocessor/seq/fold_left.hpp completely, which is the 2nd biggest header after ustring.hxx. Change-Id: I3df55770adcb46e56f389af828e8ba80da2dc1f2
Diffstat (limited to 'canvas')
-rw-r--r--canvas/source/cairo/cairo_canvasfont.hxx2
-rw-r--r--canvas/source/cairo/cairo_canvashelper.hxx2
-rw-r--r--canvas/source/cairo/cairo_devicehelper.hxx2
-rw-r--r--canvas/source/cairo/cairo_spritedevicehelper.hxx2
-rw-r--r--canvas/source/cairo/cairo_textlayout.hxx2
-rw-r--r--canvas/source/directx/dx_bitmapcanvashelper.hxx2
-rw-r--r--canvas/source/directx/dx_canvasfont.hxx2
-rw-r--r--canvas/source/directx/dx_canvashelper.hxx2
-rw-r--r--canvas/source/directx/dx_devicehelper.hxx2
-rw-r--r--canvas/source/directx/dx_graphicsprovider.hxx2
-rw-r--r--canvas/source/directx/dx_spritedevicehelper.hxx2
-rw-r--r--canvas/source/directx/dx_textlayout.hxx2
-rw-r--r--canvas/source/opengl/ogl_bitmapcanvashelper.hxx2
-rw-r--r--canvas/source/opengl/ogl_canvasfont.hxx2
-rw-r--r--canvas/source/opengl/ogl_spritedevicehelper.hxx2
-rw-r--r--canvas/source/opengl/ogl_textlayout.hxx2
-rw-r--r--canvas/source/vcl/canvasfont.hxx2
-rw-r--r--canvas/source/vcl/canvashelper.hxx2
-rw-r--r--canvas/source/vcl/devicehelper.hxx2
-rw-r--r--canvas/source/vcl/spritedevicehelper.hxx2
-rw-r--r--canvas/source/vcl/textlayout.hxx2
-rw-r--r--canvas/source/vcl/windowoutdevholder.hxx2
22 files changed, 22 insertions, 22 deletions
diff --git a/canvas/source/cairo/cairo_canvasfont.hxx b/canvas/source/cairo/cairo_canvasfont.hxx
index 4571c1953877..641a730e4871 100644
--- a/canvas/source/cairo/cairo_canvasfont.hxx
+++ b/canvas/source/cairo/cairo_canvasfont.hxx
@@ -34,7 +34,7 @@
#include "cairo_spritecanvas.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
/* Definition of CanvasFont class */
diff --git a/canvas/source/cairo/cairo_canvashelper.hxx b/canvas/source/cairo/cairo_canvashelper.hxx
index ed6f702a53aa..e16311a92a51 100644
--- a/canvas/source/cairo/cairo_canvashelper.hxx
+++ b/canvas/source/cairo/cairo_canvashelper.hxx
@@ -30,7 +30,7 @@
#include <vcl/vclptr.hxx>
#include <vcl/virdev.hxx>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include <vcl/cairo.hxx>
#include "cairo_surfaceprovider.hxx"
diff --git a/canvas/source/cairo/cairo_devicehelper.hxx b/canvas/source/cairo/cairo_devicehelper.hxx
index eafc5065e10b..6debc903010c 100644
--- a/canvas/source/cairo/cairo_devicehelper.hxx
+++ b/canvas/source/cairo/cairo_devicehelper.hxx
@@ -24,7 +24,7 @@
#include <com/sun/star/rendering/XGraphicDevice.hpp>
#include <com/sun/star/rendering/XBufferController.hpp>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include <vcl/window.hxx>
#include <vcl/bitmap.hxx>
diff --git a/canvas/source/cairo/cairo_spritedevicehelper.hxx b/canvas/source/cairo/cairo_spritedevicehelper.hxx
index 0f586c5e546e..30c37cff6d80 100644
--- a/canvas/source/cairo/cairo_spritedevicehelper.hxx
+++ b/canvas/source/cairo/cairo_spritedevicehelper.hxx
@@ -24,7 +24,7 @@
#include <com/sun/star/rendering/XGraphicDevice.hpp>
#include <com/sun/star/rendering/XBufferController.hpp>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include <vcl/window.hxx>
#include <vcl/bitmap.hxx>
diff --git a/canvas/source/cairo/cairo_textlayout.hxx b/canvas/source/cairo/cairo_textlayout.hxx
index 88af49c874e6..4f5b0174650d 100644
--- a/canvas/source/cairo/cairo_textlayout.hxx
+++ b/canvas/source/cairo/cairo_textlayout.hxx
@@ -30,7 +30,7 @@
#include <vcl/outdev.hxx>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include <vcl/cairo.hxx>
#include "cairo_canvasfont.hxx"
diff --git a/canvas/source/directx/dx_bitmapcanvashelper.hxx b/canvas/source/directx/dx_bitmapcanvashelper.hxx
index 80f8d9ae8f18..dec8a64f9a11 100644
--- a/canvas/source/directx/dx_bitmapcanvashelper.hxx
+++ b/canvas/source/directx/dx_bitmapcanvashelper.hxx
@@ -32,7 +32,7 @@
#include "dx_impltools.hxx"
#include "dx_canvashelper.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
namespace dxcanvas
diff --git a/canvas/source/directx/dx_canvasfont.hxx b/canvas/source/directx/dx_canvasfont.hxx
index 8181f39050e8..3d4165049d77 100644
--- a/canvas/source/directx/dx_canvasfont.hxx
+++ b/canvas/source/directx/dx_canvasfont.hxx
@@ -30,7 +30,7 @@
#include <rtl/ref.hxx>
#include <boost/shared_ptr.hpp>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include "dx_winstuff.hxx"
#include "dx_gdiplususer.hxx"
diff --git a/canvas/source/directx/dx_canvashelper.hxx b/canvas/source/directx/dx_canvashelper.hxx
index 69c692a3c784..c23087868eaa 100644
--- a/canvas/source/directx/dx_canvashelper.hxx
+++ b/canvas/source/directx/dx_canvashelper.hxx
@@ -31,7 +31,7 @@
#include "dx_gdiplususer.hxx"
#include "dx_impltools.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
namespace dxcanvas
diff --git a/canvas/source/directx/dx_devicehelper.hxx b/canvas/source/directx/dx_devicehelper.hxx
index c17815341593..a941664a1a88 100644
--- a/canvas/source/directx/dx_devicehelper.hxx
+++ b/canvas/source/directx/dx_devicehelper.hxx
@@ -29,7 +29,7 @@
#include <canvas/rendering/isurfaceproxymanager.hxx>
#include <vcl/vclptr.hxx>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
class OutputDevice;
/* Definition of DeviceHelper class */
diff --git a/canvas/source/directx/dx_graphicsprovider.hxx b/canvas/source/directx/dx_graphicsprovider.hxx
index 4a098b5c40c3..1b7ec65035ae 100644
--- a/canvas/source/directx/dx_graphicsprovider.hxx
+++ b/canvas/source/directx/dx_graphicsprovider.hxx
@@ -23,7 +23,7 @@
#include "dx_winstuff.hxx"
#include <boost/shared_ptr.hpp>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
namespace Gdiplus{ class Graphics; }
diff --git a/canvas/source/directx/dx_spritedevicehelper.hxx b/canvas/source/directx/dx_spritedevicehelper.hxx
index 3b52f2db81f4..1a13315c9fb3 100644
--- a/canvas/source/directx/dx_spritedevicehelper.hxx
+++ b/canvas/source/directx/dx_spritedevicehelper.hxx
@@ -30,7 +30,7 @@
#include <canvas/rendering/isurfaceproxymanager.hxx>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
namespace dxcanvas
diff --git a/canvas/source/directx/dx_textlayout.hxx b/canvas/source/directx/dx_textlayout.hxx
index ef238d5892c3..d21fcf6e5a2c 100644
--- a/canvas/source/directx/dx_textlayout.hxx
+++ b/canvas/source/directx/dx_textlayout.hxx
@@ -29,7 +29,7 @@
#include <basegfx/vector/b2isize.hxx>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include "dx_canvasfont.hxx"
#include "dx_ibitmap.hxx"
diff --git a/canvas/source/opengl/ogl_bitmapcanvashelper.hxx b/canvas/source/opengl/ogl_bitmapcanvashelper.hxx
index 0c6758855181..36f67d2fd42d 100644
--- a/canvas/source/opengl/ogl_bitmapcanvashelper.hxx
+++ b/canvas/source/opengl/ogl_bitmapcanvashelper.hxx
@@ -16,7 +16,7 @@
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2dsize.hxx>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include <boost/shared_ptr.hpp>
#include <vector>
diff --git a/canvas/source/opengl/ogl_canvasfont.hxx b/canvas/source/opengl/ogl_canvasfont.hxx
index 0ab99d7c53e5..d814fd6da591 100644
--- a/canvas/source/opengl/ogl_canvasfont.hxx
+++ b/canvas/source/opengl/ogl_canvasfont.hxx
@@ -19,7 +19,7 @@
#include <rtl/ref.hxx>
#include <boost/shared_ptr.hpp>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
/* Definition of CanvasFont class */
diff --git a/canvas/source/opengl/ogl_spritedevicehelper.hxx b/canvas/source/opengl/ogl_spritedevicehelper.hxx
index b1a988d51305..02fb85341c3f 100644
--- a/canvas/source/opengl/ogl_spritedevicehelper.hxx
+++ b/canvas/source/opengl/ogl_spritedevicehelper.hxx
@@ -15,7 +15,7 @@
#include <rtl/ref.hxx>
#include <canvas/elapsedtime.hxx>
#include <com/sun/star/rendering/XGraphicDevice.hpp>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include <boost/shared_ptr.hpp>
#include "ogl_buffercontext.hxx"
diff --git a/canvas/source/opengl/ogl_textlayout.hxx b/canvas/source/opengl/ogl_textlayout.hxx
index 6541369266e7..6f126ca8e3ea 100644
--- a/canvas/source/opengl/ogl_textlayout.hxx
+++ b/canvas/source/opengl/ogl_textlayout.hxx
@@ -17,7 +17,7 @@
#include <basegfx/vector/b2isize.hxx>
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
#include "ogl_canvasfont.hxx"
diff --git a/canvas/source/vcl/canvasfont.hxx b/canvas/source/vcl/canvasfont.hxx
index 01a3096a82b6..7d65897ac718 100644
--- a/canvas/source/vcl/canvasfont.hxx
+++ b/canvas/source/vcl/canvasfont.hxx
@@ -36,7 +36,7 @@
#include "spritecanvas.hxx"
#include "impltools.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
/* Definition of CanvasFont class */
diff --git a/canvas/source/vcl/canvashelper.hxx b/canvas/source/vcl/canvashelper.hxx
index 0f22ea667b43..2478b8d821e3 100644
--- a/canvas/source/vcl/canvashelper.hxx
+++ b/canvas/source/vcl/canvashelper.hxx
@@ -31,7 +31,7 @@
#include "cachedbitmap.hxx"
#include "outdevprovider.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
namespace vclcanvas
diff --git a/canvas/source/vcl/devicehelper.hxx b/canvas/source/vcl/devicehelper.hxx
index 08d2270d5590..ac2075c51c94 100644
--- a/canvas/source/vcl/devicehelper.hxx
+++ b/canvas/source/vcl/devicehelper.hxx
@@ -30,7 +30,7 @@
#include "outdevprovider.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
/* Definition of DeviceHelper class */
diff --git a/canvas/source/vcl/spritedevicehelper.hxx b/canvas/source/vcl/spritedevicehelper.hxx
index c91355db174b..a2d1a47327be 100644
--- a/canvas/source/vcl/spritedevicehelper.hxx
+++ b/canvas/source/vcl/spritedevicehelper.hxx
@@ -31,7 +31,7 @@
#include "backbuffer.hxx"
#include "devicehelper.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
/* Definition of DeviceHelper class */
diff --git a/canvas/source/vcl/textlayout.hxx b/canvas/source/vcl/textlayout.hxx
index eed0d1e05d24..02ea2e4fa0ae 100644
--- a/canvas/source/vcl/textlayout.hxx
+++ b/canvas/source/vcl/textlayout.hxx
@@ -32,7 +32,7 @@
#include "canvasfont.hxx"
#include "impltools.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
/* Definition of TextLayout class */
diff --git a/canvas/source/vcl/windowoutdevholder.hxx b/canvas/source/vcl/windowoutdevholder.hxx
index 1d652d1d81d2..a39667bf3c18 100644
--- a/canvas/source/vcl/windowoutdevholder.hxx
+++ b/canvas/source/vcl/windowoutdevholder.hxx
@@ -26,7 +26,7 @@
#include "outdevprovider.hxx"
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
namespace vclcanvas
{