qt5-cadaques
qt5-cadaques copied to clipboard
Syntax error in Drawing Shapes code sample
back-link: ch02/index.html#widget-application
Another typo in Drawing Shapes cpp file you have :
include "customwidgetv2.h"
CustomWidget::CustomWidget(QWidget *parent) : QWidget(parent) {
should be :
include "customwidgetv2.h"
CustomWidgetV2::CustomWidgetV2(QWidget *parent) : QWidget(parent) {