/////////////////////////////////////////////////////////////////////////// Overriden so that style <----> label are linked. Note that you can not determine which gets called first.
| 52 | // Overriden so that style <----> label are linked. |
| 53 | // Note that you can not determine which gets called first. |
| 54 | void ColumnRecur::setStyle(const std::string& value) { |
| 55 | Column::setStyle(value); |
| 56 | |
| 57 | if (_style == "indicator" && _label == "Recur") |
| 58 | _label = _label.substr(0, Context::getContext().config.get("recurrence.indicator").length()); |
| 59 | } |
| 60 | |
| 61 | //////////////////////////////////////////////////////////////////////////////// |
| 62 | // Set the minimum and maximum widths for the value. |