diff options
Diffstat (limited to 'remoting/host/disconnect_window_gtk.cc')
-rw-r--r-- | remoting/host/disconnect_window_gtk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/disconnect_window_gtk.cc b/remoting/host/disconnect_window_gtk.cc index 5b840e0..34c2683 100644 --- a/remoting/host/disconnect_window_gtk.cc +++ b/remoting/host/disconnect_window_gtk.cc @@ -161,7 +161,7 @@ void DisconnectWindowGtk::Start( // Extract the user name from the JID. std::string client_jid = client_session_control_->client_jid(); base::string16 username = - UTF8ToUTF16(client_jid.substr(0, client_jid.find('/'))); + base::UTF8ToUTF16(client_jid.substr(0, client_jid.find('/'))); gtk_label_set_text( GTK_LABEL(message_), l10n_util::GetStringFUTF8(IDR_MESSAGE_SHARED, username).c_str()); |