From 617522617e4b0e90787614060ff19731f4d08310 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 22 Nov 2000 16:28:38 +0000 Subject: [PATCH] (make_frame): Change initialization of tool bar items accordingly. --- src/frame.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frame.c b/src/frame.c index f41eaf0292f..f07254dcfed 100644 --- a/src/frame.c +++ b/src/frame.c @@ -246,9 +246,9 @@ make_frame (mini_p) f->title = Qnil; f->menu_bar_window = Qnil; f->tool_bar_window = Qnil; - f->desired_tool_bar_items = f->current_tool_bar_items = Qnil; + f->tool_bar_items = Qnil; f->desired_tool_bar_string = f->current_tool_bar_string = Qnil; - f->n_desired_tool_bar_items = f->n_current_tool_bar_items = 0; + f->n_tool_bar_items = 0; root_window = make_window (); if (mini_p) -- 2.39.5