Chromium Code Reviews| Index: views/controls/combobox/combobox.cc |
| diff --git a/views/controls/combobox/combobox.cc b/views/controls/combobox/combobox.cc |
| index fefa36aafd35a55a2972ddee64b320665c36a9fc..a0c7fd43e8afd66ca2ae704f9bd8f3caecaed08e 100644 |
| --- a/views/controls/combobox/combobox.cc |
| +++ b/views/controls/combobox/combobox.cc |
| @@ -78,8 +78,8 @@ void Combobox::Layout() { |
| } |
| } |
| -void Combobox::SetEnabled(bool flag) { |
| - View::SetEnabled(flag); |
| +void Combobox::OnEnabledChanged(bool enabled) { |
| + View::SetEnabled(enabled); |
|
Ben Goodger (Google)
2011/05/27 16:01:21
Infinite recursion.
tfarina
2011/05/27 16:25:04
Done.
|
| if (native_wrapper_) |
| native_wrapper_->UpdateEnabled(); |
| } |