qt5-cadaques
qt5-cadaques copied to clipboard
pointer * with type not variable name
back-link: ch02/index.html#qt-quick-application
QQuickView* view = new QQuickView(); Better practice is probably to put the * for pointer type with the variable name as this is where it binds in the syntax.
QQuickView *view = new QQuickView();