14 lines
431 B
QML
14 lines
431 B
QML
import Qt.test 1.0
|
|
import QtQuick 2.0
|
|
|
|
MyTypeObject {
|
|
Component.onCompleted: {
|
|
dateProperty = new Date(2019, 9, 3);
|
|
boolProperty = (dateProperty.getUTCFullYear() == 2019
|
|
&& dateProperty.getUTCMonth() == 9
|
|
&& dateProperty.getUTCDate() == 3
|
|
// QTBUG-78996, day of the week:
|
|
&& dateProperty.getUTCDay() == 4);
|
|
}
|
|
}
|