diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-12-09 07:37:33 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-12-09 07:42:10 -0500 |
commit | 64f45731a7ec8b5220649a387d2c26d27c912dd5 (patch) | |
tree | 64414ef397a661964a0c3942a189f260adaf1128 | |
parent | 1367e4b2aff3908b6744c89ec2500b56f30f09b6 (diff) |
Disable copy c'tor of these guys as well, to fix Windows build.
Change-Id: Iaaf38cf8cf9b4b772583d117a0b622fbfce3107e
-rw-r--r-- | include/svx/svdovirt.hxx | 1 | ||||
-rw-r--r-- | svx/source/inc/fmobj.hxx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/svx/svdovirt.hxx b/include/svx/svdovirt.hxx index 36cc43030eac..927a0f572938 100644 --- a/include/svx/svdovirt.hxx +++ b/include/svx/svdovirt.hxx @@ -35,6 +35,7 @@ class SVX_DLLPUBLIC SdrVirtObj : public SdrObject { + SdrVirtObj( const SdrVirtObj& ); // disabled public: virtual sdr::properties::BaseProperties& GetProperties() const SAL_OVERRIDE; diff --git a/svx/source/inc/fmobj.hxx b/svx/source/inc/fmobj.hxx index 606148fd5adc..96297639dbef 100644 --- a/svx/source/inc/fmobj.hxx +++ b/svx/source/inc/fmobj.hxx @@ -29,6 +29,8 @@ class SVX_DLLPUBLIC FmFormObj: public SdrUnoObj { + FmFormObj( const FmFormObj& ); // disabled + ::com::sun::star::uno::Sequence< ::com::sun::star::script::ScriptEventDescriptor > aEvts; // events des Objects ::com::sun::star::uno::Sequence< ::com::sun::star::script::ScriptEventDescriptor> m_aEventsHistory; // valid if and only if m_pEnvironmentHistory != NULL, this are the events which we're set when |