diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/view.cc | 2 | ||||
-rw-r--r-- | views/view.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/views/view.cc b/views/view.cc index b3bfeee..b3644dc 100644 --- a/views/view.cc +++ b/views/view.cc @@ -84,7 +84,7 @@ namespace views { ViewsDelegate* ViewsDelegate::views_delegate = NULL; // static -char View::kViewClassName[] = "views/View"; +const char View::kViewClassName[] = "views/View"; //////////////////////////////////////////////////////////////////////////////// // View, public: diff --git a/views/view.h b/views/view.h index c0154f0..6c49097 100644 --- a/views/view.h +++ b/views/view.h @@ -363,7 +363,7 @@ class VIEWS_EXPORT View : public ui::LayerDelegate, // Attributes ---------------------------------------------------------------- // The view class name. - static char kViewClassName[]; + static const char kViewClassName[]; // Return the receiving view's class name. A view class is a string which // uniquely identifies the view class. It is intended to be used as a way to |