diff options
author | Eike Rathke <erack@redhat.com> | 2014-03-21 21:47:14 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-03-21 22:21:58 +0100 |
commit | 0536356202f9bbee4272731dca887c12594aa470 (patch) | |
tree | c352c7a6b2a932a96409e99c04703e794c7ac03b /sc | |
parent | c9d88b02c729c27d39d345b36a73c746104b46ac (diff) |
copy-construct maEnhancedProtection in ScTableProtectionImpl
Change-Id: Ia1f7415b853f9e5ac585f89cbc938c2464c33fe5
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/tabprotection.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/core/data/tabprotection.cxx b/sc/source/core/data/tabprotection.cxx index 7accb279d7cf..8b4aa7ccbe9a 100644 --- a/sc/source/core/data/tabprotection.cxx +++ b/sc/source/core/data/tabprotection.cxx @@ -188,7 +188,8 @@ ScTableProtectionImpl::ScTableProtectionImpl(const ScTableProtectionImpl& r) : mbEmptyPass(r.mbEmptyPass), mbProtected(r.mbProtected), meHash1(r.meHash1), - meHash2(r.meHash2) + meHash2(r.meHash2), + maEnhancedProtection(r.maEnhancedProtection) { } |