summaryrefslogtreecommitdiff
path: root/sc/source/core/data/tabprotection.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/data/tabprotection.cxx')
-rw-r--r--sc/source/core/data/tabprotection.cxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/sc/source/core/data/tabprotection.cxx b/sc/source/core/data/tabprotection.cxx
index 73b03c567d87..8d19ab9ac5c3 100644
--- a/sc/source/core/data/tabprotection.cxx
+++ b/sc/source/core/data/tabprotection.cxx
@@ -94,11 +94,11 @@ public:
explicit ScTableProtectionImpl(SCSIZE nOptSize);
explicit ScTableProtectionImpl(const ScTableProtectionImpl& r);
- bool isProtected() const;
+ bool isProtected() const { return mbProtected;}
bool isProtectedWithPass() const;
void setProtected(bool bProtected);
- bool isPasswordEmpty() const;
+ bool isPasswordEmpty() const { return mbEmptyPass;}
bool hasPasswordHash(ScPasswordHash eHash, ScPasswordHash eHash2 = PASSHASH_UNSPECIFIED) const;
void setPassword(const OUString& aPassText);
::com::sun::star::uno::Sequence<sal_Int8> getPasswordHash(
@@ -189,10 +189,6 @@ ScTableProtectionImpl::ScTableProtectionImpl(const ScTableProtectionImpl& r) :
{
}
-bool ScTableProtectionImpl::isProtected() const
-{
- return mbProtected;
-}
bool ScTableProtectionImpl::isProtectedWithPass() const
{
@@ -224,10 +220,6 @@ void ScTableProtectionImpl::setPassword(const OUString& aPassText)
}
}
-bool ScTableProtectionImpl::isPasswordEmpty() const
-{
- return mbEmptyPass;
-}
bool ScTableProtectionImpl::hasPasswordHash(ScPasswordHash eHash, ScPasswordHash eHash2) const
{