From 0df94faad8d000bae728f26d130861c480b1492b Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Wed, 3 Jan 2018 16:55:46 -0500 Subject: [PATCH] The message is not in fact a format --- src/PluginManager.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/PluginManager.cpp b/src/PluginManager.cpp index 9edc3cec5..0f6fd7327 100644 --- a/src/PluginManager.cpp +++ b/src/PluginManager.cpp @@ -1835,16 +1835,16 @@ bool PluginManager::DropFile(const wxString &fileName) // Ask whether to enable the plug-ins if (auto nIds = ids.size()) { - auto format = wxPLURAL( + auto message = wxPLURAL( _("Enable this plug-in?"), _("Enable these plug-ins?"), nIds ); - format += wxT("\n"); + message += wxT("\n"); for (const auto &name : names) - format += name + wxT("\n"); + message += name + wxT("\n"); bool enable = (wxYES == ::AudacityMessageBox( - wxString::Format( format, nIds ), + message, _("Enable new plug-ins"), wxYES_NO ) );