diff options
author | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-06 18:50:05 +0000 |
---|---|---|
committer | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-06 18:50:05 +0000 |
commit | 9b18067f4ddb0444f26dc265153df3bae257e782 (patch) | |
tree | 9e4b395570480981f523daced0c596a16491e42c /chrome/common | |
parent | 5b1a0da177656de7be3f554d99805b61d18d4af8 (diff) | |
download | chromium_src-9b18067f4ddb0444f26dc265153df3bae257e782.zip chromium_src-9b18067f4ddb0444f26dc265153df3bae257e782.tar.gz chromium_src-9b18067f4ddb0444f26dc265153df3bae257e782.tar.bz2 |
fix build bustage
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@444 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/plugin_messages.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/plugin_messages.h b/chrome/common/plugin_messages.h index 85463cb..e9ac923 100644 --- a/chrome/common/plugin_messages.h +++ b/chrome/common/plugin_messages.h @@ -379,12 +379,12 @@ struct ParamTraits<NPEvent> { switch(p.event) { case WM_KEYDOWN: event = L"WM_KEYDOWN"; - wparam = IntToString(p.wParam); - lparam = IntToString(p.lParam); + wparam = StringPrintf(L"%d", p.wParam); + lparam = StringPrintf(L"%d", p.lParam); break; case WM_KEYUP: event = L"WM_KEYDOWN"; - wparam = IntToString(p.wParam); + wparam = StringPrintf(L"%d", p.wParam); lparam = StringPrintf(L"%x", p.lParam); break; case WM_MOUSEMOVE: |