-----------------------------------------------------------------------------
| 424 | |
| 425 | //----------------------------------------------------------------------------- |
| 426 | QPair<int, QString> pqDisplayColorWidget::arraySelection() const |
| 427 | { |
| 428 | if (this->Variables->currentIndex() != -1) |
| 429 | { |
| 430 | return pqDisplayColorWidget::PropertyLinksConnection::convert( |
| 431 | this->Variables->itemData(this->Variables->currentIndex())); |
| 432 | } |
| 433 | |
| 434 | return QPair<int, QString>(); |
| 435 | } |
| 436 | |
| 437 | //----------------------------------------------------------------------------- |
| 438 | void pqDisplayColorWidget::setArraySelection(const QPair<int, QString>& value) |
no test coverage detected