From 5d3ebc1001c33fedc1f31ca86ad033a2e074a8c3 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 6 Jul 2023 23:25:35 +0200 Subject: [PATCH] ClockLabel.cs: Minor fixes. --- ClockLabel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ClockLabel.cs b/ClockLabel.cs index aa8c03e..5e82f20 100644 --- a/ClockLabel.cs +++ b/ClockLabel.cs @@ -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;