mirror of https://github.com/buggins/dlangui.git
Fixed deprecation warning about Nullable's alias this
This commit is contained in:
parent
9c2c6a6fbb
commit
1c592c4664
|
@ -374,7 +374,7 @@ class FileDialog : Dialog, CustomGridCellAdapter {
|
||||||
return "----.--.-- --:--";
|
return "----.--.-- --:--";
|
||||||
} else {
|
} else {
|
||||||
//date = "%04d.%02d.%02d %02d:%02d:%02d".format(ts.year, ts.month, ts.day, ts.hour, ts.minute, ts.second);
|
//date = "%04d.%02d.%02d %02d:%02d:%02d".format(ts.year, ts.month, ts.day, ts.hour, ts.minute, ts.second);
|
||||||
return "%04d.%02d.%02d %02d:%02d".format(ts.year, ts.month, ts.day, ts.hour, ts.minute);
|
return "%04d.%02d.%02d %02d:%02d".format(ts.get.year, ts.get.month, ts.get.day, ts.get.hour, ts.get.minute);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue