summaryrefslogtreecommitdiff
path: root/chromium/ui/views/examples/button_example.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/views/examples/button_example.cc')
-rw-r--r--chromium/ui/views/examples/button_example.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/ui/views/examples/button_example.cc b/chromium/ui/views/examples/button_example.cc
index a13bb25eb9e..5a0f96989ec 100644
--- a/chromium/ui/views/examples/button_example.cc
+++ b/chromium/ui/views/examples/button_example.cc
@@ -127,7 +127,7 @@ void ButtonExample::ButtonPressed(Button* sender, const ui::Event& event) {
else if (sender == disabled_button_)
LabelButtonPressed(disabled_button_, event);
else if (sender == md_button_ || sender == md_default_button_)
- static_cast<CustomButton*>(sender)->StartThrobbing(5);
+ static_cast<Button*>(sender)->StartThrobbing(5);
else
PrintStatus("Image Button Pressed! count: %d", ++count_);
}