diff options
Diffstat (limited to 'views/examples/button_example.cc')
-rw-r--r-- | views/examples/button_example.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/examples/button_example.cc b/views/examples/button_example.cc index e929858..dee6662e 100644 --- a/views/examples/button_example.cc +++ b/views/examples/button_example.cc @@ -38,7 +38,7 @@ void ButtonExample::CreateExampleView(views::View* container) { void ButtonExample::ButtonPressed(views::Button* sender, const views::Event& event) { - PrintStatus(L"Pressed! count:%d", ++count_); + PrintStatus("Pressed! count:%d", ++count_); if (event.IsControlDown()) { if (event.IsShiftDown()) { |