changeset 33759:593bc303c500

(struct frame): Members desired_tool_bar_items, current_tool_bar_items, n_desired_tool_bar_items, n_current_tool_bar_items removed. Add tool_bar_items and n_tool_bar_items.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 22 Nov 2000 16:28:11 +0000
parents 8c1e62157545
children 22dc6e2e7410
files src/frame.h
diffstat 1 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/frame.h	Wed Nov 22 16:24:34 2000 +0000
+++ b/src/frame.h	Wed Nov 22 16:28:11 2000 +0000
@@ -4,7 +4,7 @@
 #define _XFRAME_H_
 
 /* Define frame-object for GNU Emacs.
-   Copyright (C) 1993, 1994 Free Software Foundation, Inc.
+   Copyright (C) 1993, 1994, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -179,7 +179,7 @@
   Lisp_Object tool_bar_window;
 
   /* Desired and current tool-bar items.  */
-  Lisp_Object desired_tool_bar_items, current_tool_bar_items;
+  Lisp_Object tool_bar_items;
 
   /* Desired and current contents displayed in tool_bar_window.  */
   Lisp_Object desired_tool_bar_string, current_tool_bar_string;
@@ -206,8 +206,7 @@
   /* Margin at the top of the frame.  Used to display the tool-bar.  */
   int tool_bar_lines;
 
-  int n_desired_tool_bar_items;
-  int n_current_tool_bar_items;
+  int n_tool_bar_items;
   
   /* A buffer for decode_mode_line. */
   char *decode_mode_spec_buffer;