summaryrefslogtreecommitdiff
path: root/src/wx/server_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-01 17:58:04 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-01 17:58:04 +0000
commit6ff79076d4a92dc6530a27e2a6cb3e07b6209821 (patch)
treeff79392495f575d6767b9a66fbc302b2019f04f7 /src/wx/server_dialog.cc
parente17fe32e21a73047d46acc0f88c977532d48a61d (diff)
Fix for wx 2.8.
Diffstat (limited to 'src/wx/server_dialog.cc')
-rw-r--r--src/wx/server_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/server_dialog.cc b/src/wx/server_dialog.cc
index 46e3f7127..7a9cf95c7 100644
--- a/src/wx/server_dialog.cc
+++ b/src/wx/server_dialog.cc
@@ -27,7 +27,7 @@ ServerDialog::ServerDialog (wxWindow* parent, ServerDescription* server)
if (server) {
_server = server;
} else {
- _server = new ServerDescription (N_("localhost"), 1);
+ _server = new ServerDescription (wx_to_std (N_("localhost")), 1);
}
wxFlexGridSizer* table = new wxFlexGridSizer (2, 4, 4);