| Index: ui/views/examples/text_example.h
|
| diff --git a/ui/views/examples/text_example.h b/ui/views/examples/text_example.h
|
| index e26b0439dd36ed46ff3d99ee06b3eabc48d6d8df..b7b88f11d72049ff6e0b1f7409d5203a4fd54b13 100644
|
| --- a/ui/views/examples/text_example.h
|
| +++ b/ui/views/examples/text_example.h
|
| @@ -38,7 +38,7 @@
|
| // Creates and adds a combobox to the layout.
|
| Combobox* AddCombobox(GridLayout* layout,
|
| const char* name,
|
| - const char* const* strings,
|
| + const char** strings,
|
| int count);
|
|
|
| // ButtonListener:
|
| @@ -63,14 +63,14 @@
|
| // Combo box to choose one of the sample texts.
|
| Combobox* text_cb_;
|
|
|
| - // Combo box to choose a font weight.
|
| - Combobox* weight_cb_;
|
| -
|
| // Check box to enable/disable multiline text drawing.
|
| Checkbox* multiline_checkbox_;
|
|
|
| // Check box to enable/disable character break behavior.
|
| Checkbox* break_checkbox_;
|
| +
|
| + // Check box to enable/disable bold style.
|
| + Checkbox* bold_checkbox_;
|
|
|
| // Check box to enable/disable italic style.
|
| Checkbox* italic_checkbox_;
|
|
|