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

Repo for Qt5 Cadaques Project

Results 100 qt5-cadaques issues
Sort by recently updated
recently updated
newest added

back-link: http://qmlbook.org/ch10/index.html#playing-media ``` import QtSystemInfo 5.0 ``` [QtSystemInfo has not been implemented, as of November 19, 2014.](http://qt-project.org/forums/viewthread/49803) Based on my research, it has not been re-introduced since the upgrade to...

back-link: ch04/index.html#textinput In 4.7.1, TLineEditV1.qml has a Rectangle that inherits from its TextInput, which also inherits from its parent. It is a loop that causes the display of the text...

ch04->assert->rocket.png isn't a rocket

back-link: ch02/index.html#console-application ``` forever { // test for empty string 'QString("")' if(line.isEmpty()) { continue; } // test for null string 'String()' if(line.isNull()) { break; } } ``` should in reality...

back-link: ch02/index.html#console-application I got a report on the Qt project contact form about a possible bug in the File IO example code. The user reported that the line.isEmpty() and line.isNull()...

back-link: ch02/index.html#hello-world The lines of code make a rectangle of 360 x 360: width: 360 height: 360 The description says that it is a 300 x 300 rectangle: "This code...

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...

back-link: ch02/index.html#installing-qt-5-sdk "This code in particular show a rectangle of 300 x 300 pixel geometry with a centered text “Hello World”." --> This code in particular show a rectangle of...

back-link: ch02/index.html#get-started Example shows... proxy->setFilterCaseSensitive(Qt::CaseInsensitive); proxy->setFilterFixedString(QString) Both lines produce errors. should be: proxy->setFilterCaseSensitivity(Qt::CaseInsensitive); setFilterFixedString() line can be removed, its not needed.