diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 20:55:11 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 20:55:11 +0000 |
commit | ffe88f7578d07e1924d88abc9e4b6e3d112e6345 (patch) | |
tree | 123976c73b7f49ba66efd8e394c1797bbdef115c /chrome/browser/views/about_ipc_dialog.cc | |
parent | db5e2d909a38d03b013a3b581e394091079b57d4 (diff) | |
download | chromium_src-ffe88f7578d07e1924d88abc9e4b6e3d112e6345.zip chromium_src-ffe88f7578d07e1924d88abc9e4b6e3d112e6345.tar.gz chromium_src-ffe88f7578d07e1924d88abc9e4b6e3d112e6345.tar.bz2 |
Delete all precompiled support. It is causing more harm than good, especially when define changes.
TEST=none
BUG=20889
Review URL: http://codereview.chromium.org/171118
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25511 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/about_ipc_dialog.cc')
-rw-r--r-- | chrome/browser/views/about_ipc_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/about_ipc_dialog.cc b/chrome/browser/views/about_ipc_dialog.cc index 89325ca..ea3c1c9 100644 --- a/chrome/browser/views/about_ipc_dialog.cc +++ b/chrome/browser/views/about_ipc_dialog.cc @@ -362,7 +362,7 @@ void AboutIPCDialog::Layout() { if (!message_list_.m_hWnd) { HWND parent_window = GetRootView()->GetWidget()->GetNativeView(); - CRect rect(0, 0, 10, 10); + RECT rect = {0, 0, 10, 10}; HWND list_hwnd = message_list_.Create(parent_window, rect, NULL, WS_CHILD | WS_VISIBLE | LVS_SORTASCENDING); message_list_.SetViewType(LVS_REPORT); |