| 60 | } |
| 61 | |
| 62 | void AboutDialog::showMainColorDialog() { |
| 63 | QColorDialog *colorDialog = new QColorDialog(mainwindow->getUiColorMain(), this); |
| 64 | connect(colorDialog, SIGNAL(currentColorChanged(QColor)), mainwindow, SLOT(setUiColorMain(QColor))); |
| 65 | colorDialog->show(); |
| 66 | } |
| 67 | |
| 68 | void AboutDialog::showTextColorDialog() { |
| 69 | QColorDialog *colorDialog = new QColorDialog(mainwindow->getUiColorText(), this); |
nothing calls this directly
no test coverage detected