diff options
Diffstat (limited to 'chrome/browser/gtk/bookmark_editor_gtk.cc')
-rw-r--r-- | chrome/browser/gtk/bookmark_editor_gtk.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/gtk/bookmark_editor_gtk.cc b/chrome/browser/gtk/bookmark_editor_gtk.cc index c4ccb70..8b449a4 100644 --- a/chrome/browser/gtk/bookmark_editor_gtk.cc +++ b/chrome/browser/gtk/bookmark_editor_gtk.cc @@ -160,11 +160,11 @@ void BookmarkEditorGtk::Init(GtkWindow* parent_window) { GtkTreeViewColumn* icon_column = gtk_tree_view_column_new_with_attributes( - "", gtk_cell_renderer_pixbuf_new(), "pixbuf", + "FolderIcon", gtk_cell_renderer_pixbuf_new(), "pixbuf", bookmark_utils::FOLDER_ICON, NULL); GtkTreeViewColumn* name_column = gtk_tree_view_column_new_with_attributes( - "", gtk_cell_renderer_text_new(), "text", + "FolderName", gtk_cell_renderer_text_new(), "text", bookmark_utils::FOLDER_NAME, NULL); tree_view_ = gtk_tree_view_new_with_model(GTK_TREE_MODEL(tree_store_)); |