diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-04 06:34:37 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-04 06:34:37 +0000 |
commit | fbf77f4cba7e1c14786809ffc2524da3b42edb9a (patch) | |
tree | 22ca561700391ca715229f110f3043383b3fbba9 /chrome/browser/debugger | |
parent | cee9de4e4af9a1d441a1540c6c7a676c35042994 (diff) | |
download | chromium_src-fbf77f4cba7e1c14786809ffc2524da3b42edb9a.zip chromium_src-fbf77f4cba7e1c14786809ffc2524da3b42edb9a.tar.gz chromium_src-fbf77f4cba7e1c14786809ffc2524da3b42edb9a.tar.bz2 |
Fix 16/wide build bustange on non-Windows.
Review URL: http://codereview.chromium.org/39116
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10876 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger')
-rw-r--r-- | chrome/browser/debugger/debugger_host_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/debugger/debugger_host_impl.cpp b/chrome/browser/debugger/debugger_host_impl.cpp index 0a2bb81..beeb398 100644 --- a/chrome/browser/debugger/debugger_host_impl.cpp +++ b/chrome/browser/debugger/debugger_host_impl.cpp @@ -98,7 +98,7 @@ void DebuggerHostImpl::OnDebugAttach() { std::wstring title; const TabContents* t = GetTabContentsBeingDebugged(); if (t) { - title = t->GetTitle(); + title = UTF16ToWideHack(t->GetTitle()); } ListValue* argv = new ListValue; |