* \brief Set an interval masked * * \param i the interval * \param mask true: mask, false: unmask */
| 434 | * \param mask true: mask, false: unmask |
| 435 | */ |
| 436 | void AbstractColumn::setMasked(const Interval<int>& i, bool mask) { |
| 437 | exec(new AbstractColumnSetMaskedCmd(d, i, mask), "maskingAboutToChange", "maskingChanged", QArgument<const AbstractColumn*>("const AbstractColumn*", this)); |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * \brief Overloaded function for convenience |
no outgoing calls