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) if (!d)
return false; return false;
if (hasProperty(FormatPrivate::P_Protection_Hidden) if (hasProperty(FormatPrivate::P_Protection_Hidden
|| FormatPrivate::P_Protection_Locked) { || FormatPrivate::P_Protection_Locked)) {
return true; return true;
} }
return false; return false;

Loading…
Cancel
Save