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/l4d
parentf32c8783ee2ad07daf13fbbda12c66ea77ce03a6 (diff)
Avoid constref initializers of std::wstring inside const structs
Diffstat (limited to 'plugins/l4d')
-rw-r--r--plugins/l4d/l4d.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/l4d/l4d.cpp b/plugins/l4d/l4d.cpp
index d4fd35e97..fb985df65 100644
--- a/plugins/l4d/l4d.cpp
+++ b/plugins/l4d/l4d.cpp
@@ -167,10 +167,13 @@ static const std::wstring longdesc() {
return std::wstring(L"Supports L4D version 3790 only. Supports no fancy stuff.");
}
+static std::wstring description(L"Left 4 Dead (Build 3790)");
+static std::wstring shortname(L"Left 4 Dead");
+
static MumblePlugin l4dplug = {
MUMBLE_PLUGIN_MAGIC,
- std::wstring(L"Left 4 Dead (Build 3790)"),
- std::wstring(L"Left 4 Dead"),
+ description,
+ shortname,
about,
NULL,
trylock,