qt5-cadaques icon indicating copy to clipboard operation
qt5-cadaques copied to clipboard

pointer * with type not variable name

Open jriddell opened this issue 10 years ago • 0 comments

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();

jriddell avatar Oct 31 '14 08:10 jriddell