ClockLabel.cs: Minor fixes.
This commit is contained in:
parent
4792466e02
commit
5d3ebc1001
1 changed files with 2 additions and 2 deletions
|
|
@ -17,9 +17,9 @@ class ClockLabel : Label
|
||||||
/**
|
/**
|
||||||
* Textformat to use.
|
* 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;
|
Format = format;
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue