diff options
author | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-18 21:26:22 +0000 |
---|---|---|
committer | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-18 21:26:22 +0000 |
commit | 5f5ff2324679330135c31045be5df11ae8fe98ce (patch) | |
tree | 190c3b0afef7b4936310ba32c74f059a68ad941d /media | |
parent | 493ba6474eb990b53cb34f57370d4660b2b6aa55 (diff) | |
download | chromium_src-5f5ff2324679330135c31045be5df11ae8fe98ce.zip chromium_src-5f5ff2324679330135c31045be5df11ae8fe98ce.tar.gz chromium_src-5f5ff2324679330135c31045be5df11ae8fe98ce.tar.bz2 |
Renames the ambiguous hwnd variable to |parent|.
Patch submitted by Thiago Farina:
http://codereview.chromium.org/171072
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/174017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23654 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/player/list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/player/list.h b/media/player/list.h index 264b9ed..bf93913 100644 --- a/media/player/list.h +++ b/media/player/list.h @@ -15,8 +15,8 @@ class CMruList : public CWindowImpl<CMruList, CListBox> { size_.cy = 150; } - HWND Create(HWND hwnd) { - CWindowImpl<CMruList, CListBox>::Create(hwnd, rcDefault, NULL, + HWND Create(HWND parent) { + CWindowImpl<CMruList, CListBox>::Create(parent, rcDefault, NULL, WS_POPUP | WS_THICKFRAME | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_VSCROLL | LBS_NOINTEGRALHEIGHT, WS_EX_CLIENTEDGE); |