1
0
Fork 0

ClockLabel.cs: Minor fixes.

This commit is contained in:
Henrik Hautakoski 2023-07-06 23:25:35 +02:00
parent 4792466e02
commit 5d3ebc1001

View file

@ -17,9 +17,9 @@ class ClockLabel : Label
/**
* Textformat to use.
*/
public String Format { get; set; }
public string Format { get; set; }
public ClockLabel(String format = "HH:mm:ss")
public ClockLabel(string format = "HH:mm:ss")
{
Format = format;