If you are new to C++ then some of the compiler errors can be a bit confusing and daunting at first. For example if the compiler given you an expected primary-expression error (e.g. expected primary-expression before ‘.’ token), at face value it does not make sense.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 void RGBViewer::accept() { QMessageBox::information(this, "Button Clicked", "You clicked OK", QMessageBox::Ok); QColor color = QColor(Ui_RGBViewerClass.spinBoxRed->value(), Ui_RGBViewerClass.spinBoxGreen->value(), Ui_RGBViewerClass.spinBoxBlue->value(), 255); qDebug() << color; QBrush brush(color); brush.setStyle(Qt::SolidPattern); ui.graphicsView->setBackgroundBrush(brush); ui.graphicsView->backgroundBrush(); } When I compile the above code snippet, I get the following error from the compiler:
...