Skip to content

Commit 54098a0

Browse files
authored
Merge pull request #110 from fedeliallalinea/qt5.14
Fix problem with qt-5.14 (fix #99)
2 parents 5625282 + d219706 commit 54098a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package/contents/ui/DateSelector.qml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ PlasmaComponents3.TextField {
6060
onEditingFinished: updateText()
6161
Component.onCompleted: updateText()
6262

63-
property Controls.Popup popup: T.Popup {
63+
property T.Popup popup: T.Popup {
6464
x: control.mirrored ? control.width - width : 0
6565
y: control.height
6666

package/contents/ui/TimeSelector.qml

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ PlasmaComponents3.TextField {
109109
}
110110
}
111111

112-
property Controls.Popup popup: T.Popup {
112+
property T.Popup popup: T.Popup {
113113
x: control.mirrored ? control.width - width : 0
114114
y: control.height
115115
property int minWidth: 120 * units.devicePixelRatio

0 commit comments

Comments
 (0)