| 72 | } |
| 73 | |
| 74 | void AboutDialog::showGraphicsViewColorDialog() { |
| 75 | QColorDialog *colorDialog = new QColorDialog(mainwindow->getUiColorGraphicsView(), this); |
| 76 | connect(colorDialog, SIGNAL(currentColorChanged(QColor)), mainwindow, SLOT(setUiColorGraphicsView(QColor))); |
| 77 | colorDialog->show(); |
| 78 | } |
nothing calls this directly
no test coverage detected