| 43 | }; |
| 44 | |
| 45 | GradientDialog::Private::Private(GradientDialog *qq) |
| 46 | : m_currStopNr(2) |
| 47 | , ui(new Ui::GradientDialog) |
| 48 | , q(qq) |
| 49 | { |
| 50 | m_gradient << qMakePair(( qreal )0.0, QColor(Qt::red)); |
| 51 | m_gradient << qMakePair(( qreal )1.0, QColor(Qt::blue)); |
| 52 | } |
| 53 | |
| 54 | GradientDialog::Private::~Private() |
| 55 | { |
nothing calls this directly
no outgoing calls
no test coverage detected