Browse Source

Fix Issue #49 Wrong parenthesis in method, Thanks Matthias

master
Debao Zhang 10 years ago
parent
commit
ce05cf8528
  1. 4
      src/xlsx/xlsxformat.cpp

4
src/xlsx/xlsxformat.cpp

@ -1126,8 +1126,8 @@ bool Format::hasProtectionData() const
if (!d)
return false;
if (hasProperty(FormatPrivate::P_Protection_Hidden)
|| FormatPrivate::P_Protection_Locked) {
if (hasProperty(FormatPrivate::P_Protection_Hidden
|| FormatPrivate::P_Protection_Locked)) {
return true;
}
return false;

Loading…
Cancel
Save