| 66 | } |
| 67 | |
| 68 | void AboutDialog::showTextColorDialog() { |
| 69 | QColorDialog *colorDialog = new QColorDialog(mainwindow->getUiColorText(), this); |
| 70 | connect(colorDialog, SIGNAL(currentColorChanged(QColor)), mainwindow, SLOT(setUiColorText(QColor))); |
| 71 | colorDialog->show(); |
| 72 | } |
| 73 | |
| 74 | void AboutDialog::showGraphicsViewColorDialog() { |
| 75 | QColorDialog *colorDialog = new QColorDialog(mainwindow->getUiColorGraphicsView(), this); |
nothing calls this directly
no test coverage detected