diff options
Diffstat (limited to 'views/controls/button/native_button_gtk.cc')
-rw-r--r-- | views/controls/button/native_button_gtk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/controls/button/native_button_gtk.cc b/views/controls/button/native_button_gtk.cc index 079bc4c..7ded060 100644 --- a/views/controls/button/native_button_gtk.cc +++ b/views/controls/button/native_button_gtk.cc @@ -251,7 +251,7 @@ void NativeRadioButtonGtk::ViewHierarchyChanged(bool is_add, container = container->parent(); if (container) { Views other; - container->GetViewsWithGroup(native_button_->GetGroup(), &other); + container->GetViewsInGroup(native_button_->GetGroup(), &other); for (Views::iterator i(other.begin()); i != other.end(); ++i) { if (*i != native_button_) { if ((*i)->GetClassName() != NativeRadioButton::kViewClassName) { |