From e56fb4ebcfd64fd0ce684fb002ae90b25b39f889 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sat, 21 Dec 2019 11:21:34 -0500 Subject: [PATCH] Fix Windows build, it broke at e3ea93a --- src/TimerRecordDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TimerRecordDialog.cpp b/src/TimerRecordDialog.cpp index 58240c38e..487e853ea 100644 --- a/src/TimerRecordDialog.cpp +++ b/src/TimerRecordDialog.cpp @@ -799,7 +799,7 @@ TranslatableString TimerRecordDialog::GetDisplayDate( wxDateTime & dt ) len); if (len > 0) { s += wxT(" ") + dt.FormatTime(); - return TranslatableString{ s }; + return Verbatim( s ); } } #endif