Kaydet (Commit) b6013382 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

SwFlyLayFrm shall apparently be noncopyable

Change-Id: I78e1f23c3c39cafb6e3c1c085db880bc1cd88196
üst 840810d4
......@@ -19,6 +19,10 @@
#ifndef INCLUDED_SW_SOURCE_CORE_INC_FLYFRMS_HXX
#define INCLUDED_SW_SOURCE_CORE_INC_FLYFRMS_HXX
#include <sal/config.h>
#include <boost/noncopyable.hpp>
#include "flyfrm.hxx"
// #i28701#
......@@ -119,14 +123,14 @@ public:
};
// Flys that are bound to LayoutFrms and not to Cntnt
class SwFlyLayFrm : public SwFlyFreeFrm
class SwFlyLayFrm : public SwFlyFreeFrm, private boost::noncopyable
{
public:
// #i28701#
TYPEINFO_OVERRIDE();
SwFlyLayFrm( SwFlyFrmFmt*, SwFrm*, SwFrm *pAnchor );
SwFlyLayFrm( SwFlyLayFrm& );
protected:
virtual void Modify( const SfxPoolItem*, const SfxPoolItem* ) SAL_OVERRIDE;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment