diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/ref.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/tools/ref.hxx b/include/tools/ref.hxx index 6a8a01d237f3..1cd1474deeea 100644 --- a/include/tools/ref.hxx +++ b/include/tools/ref.hxx @@ -157,6 +157,9 @@ public: SvRefBase() { nRefCount = SV_NO_DELETE_REFCOUNT; } + SvRefBase( const SvRefBase & /* rObj */ ) + { nRefCount = SV_NO_DELETE_REFCOUNT; } + SvRefBase & operator = ( const SvRefBase & ) { return *this; } |