blob: 632c49299462921ce00aa87fb3b6e53013e015dc (
plain)
1
2
3
4
5
6
7
8
|
var h = new QHBox(this);
var dt = new QTimeEdit(h, 'tc');
var n = new Date(); // now
dt.time = n; // set the control to now
var t = dt.time; // get the time out
println( t.getHours().toString()+':'+t.getMinutes().toString()); // always puts out 23:59
|