! \internal Return true if the format has fill format, otherwise return false. */
| 1063 | Return true if the format has fill format, otherwise return false. |
| 1064 | */ |
| 1065 | bool Format::hasFillData() const |
| 1066 | { |
| 1067 | if (!d) |
| 1068 | return false; |
| 1069 | |
| 1070 | for (int i=FormatPrivate::P_Fill_STARTID; i<FormatPrivate::P_Fill_ENDID; ++i) { |
| 1071 | if (hasProperty(i)) |
| 1072 | return true; |
| 1073 | } |
| 1074 | return false; |
| 1075 | } |
| 1076 | |
| 1077 | /*! |
| 1078 | Returns whether the hidden protection property is set to true. |
no outgoing calls
no test coverage detected