Return number of rows needed to display the (filtered) entry */
| 154 | |
| 155 | /** Return number of rows needed to display the (filtered) entry */ |
| 156 | uint SettingEntry::Length() const |
| 157 | { |
| 158 | return this->IsFiltered() ? 0 : 1; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Get the biggest height of the help text(s), if the width is at least \a maxw. Help text gets wrapped if needed. |
no test coverage detected