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