Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2009-04-27 02:18:19 +0400
committerThorvald Natvig <slicer@users.sourceforge.net>2009-04-27 02:18:19 +0400
commitf91647345bd072e0c7257965eda41221ae21a960 (patch)
tree7a1e0af9480a819384186e3bc6acbca94def7421 /plugins/insurgency
parentf32c8783ee2ad07daf13fbbda12c66ea77ce03a6 (diff)
Avoid constref initializers of std::wstring inside const structs
Diffstat (limited to 'plugins/insurgency')
-rw-r--r--plugins/insurgency/insurgency.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/insurgency/insurgency.cpp b/plugins/insurgency/insurgency.cpp
index 9afe9a21d..d4e09c8b4 100644
--- a/plugins/insurgency/insurgency.cpp
+++ b/plugins/insurgency/insurgency.cpp
@@ -183,10 +183,13 @@ static const std::wstring longdesc() {
return std::wstring(L"Supports Insurgency mod build 3698. No identity or context support yet.");
}
+static std::wstring description(L"Insurgency: Modern Infantry Combat (Build 3698)");
+static std::wstring shortname(L"Insurgency: Modern Infantry Combat");
+
static MumblePlugin insurgencyplug = {
MUMBLE_PLUGIN_MAGIC,
- std::wstring(L"Insurgency: Modern Infantry Combat (Build 3698)"),
- std::wstring(L"Insurgency: Modern Infantry Combat"),
+ description,
+ shortname,
about,
NULL,
trylock,