From 1c31dfdce15d45c34fd790bfaa4982105b7121b4 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Mon, 20 Apr 2015 01:43:07 -0500 Subject: [PATCH] Resolve gettext message src/prefs/ModulePrefs.cpp:99: warning: Empty msgid. It is reserved by GNU gettext: gettext("") returns the header entry with meta information, not the empty string. --- src/prefs/ModulePrefs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prefs/ModulePrefs.cpp b/src/prefs/ModulePrefs.cpp index 47afb4c3b..20df7fcff 100644 --- a/src/prefs/ModulePrefs.cpp +++ b/src/prefs/ModulePrefs.cpp @@ -96,7 +96,7 @@ void ModulePrefs::PopulateOrExchange(ShuttleGui & S) StatusChoices.Add( _("New" ) ); S.SetBorder(2); - S.StartStatic(_("")); + S.StartStatic(wxT("")); { S.AddFixedText(_("These are experimental modules. Enable them only if you've read the Audacity Manual\nand know what you are doing.") ); S.AddFixedText(wxString(wxT(" ")) + _("'Ask' means Audacity will ask if you want to load the module each time it starts.") );