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.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/core/data/tabprotection.cxx b/sc/source/core/data/tabprotection.cxx
index c53c74b6fa2d..f3e87348adc4 100644
--- a/sc/source/core/data/tabprotection.cxx
+++ b/sc/source/core/data/tabprotection.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -322,10 +322,10 @@ void ScTableProtectionImpl::setPasswordHash(
bool ScTableProtectionImpl::verifyPassword(const String& aPassText) const
{
-#if DEBUG_TAB_PROTECTION
+#if DEBUG_TAB_PROTECTION
fprintf(stdout, "ScTableProtectionImpl::verifyPassword: input = '%s'\n",
OUStringToOString(rtl::OUString(aPassText), RTL_TEXTENCODING_UTF8).getStr());
-#endif
+#endif
if (mbEmptyPass)
return aPassText.Len() == 0;
@@ -337,12 +337,12 @@ bool ScTableProtectionImpl::verifyPassword(const String& aPassText) const
Sequence<sal_Int8> aHash = hashPassword(aPassText, meHash1);
aHash = hashPassword(aHash, meHash2);
-#if DEBUG_TAB_PROTECTION
+#if DEBUG_TAB_PROTECTION
fprintf(stdout, "ScTableProtectionImpl::verifyPassword: hash = ");
for (sal_Int32 i = 0; i < aHash.getLength(); ++i)
printf("%2.2X ", static_cast<sal_uInt8>(aHash[i]));
printf("\n");
-#endif
+#endif
return aHash == maPassHash;
}