From 4b43962415e926dac952997c23180449388bb9b5 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Thu, 5 Dec 2019 13:14:42 -0500 Subject: [PATCH] Fix Linux build --- src/Internat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Internat.cpp b/src/Internat.cpp index b3f18b296..235284fbe 100644 --- a/src/Internat.cpp +++ b/src/Internat.cpp @@ -316,7 +316,7 @@ wxString TranslatableString::Translation() const wxString result = (context == NullContextName) ? *this - : wxGetTranslation( *this, {}, context ); + : wxGetTranslation( *this, wxString{}, context ); if ( mFormatter ) result = mFormatter( result );