patches from Jeremy Collins

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@635 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-03-11 07:35:40 +00:00
parent d4a2b72f5a
commit da8a309104
2 changed files with 11 additions and 11 deletions

View File

@ -31,9 +31,9 @@
gchar *clist_titles[] =
{
"Account Name",
"Type",
"Balance"
" Account Name ",
" Type ",
" Balance "
};
struct main_window {
@ -85,14 +85,14 @@ void main_window_init()
/* Initilize ToolTips */
/*
tooltip = gtk_tooltips_new ();
gtk_tooltips_set_tips (tooltip, toolBar[open], "Open an account.");
gtk_tooltips_set_tips (tooltip, toolBar[close], "Create a new account.");
gtk_tooltips_set_tips (tooltip, toolBar[button3], "Edit selected account");
gtk_tooltips_set_tips (tooltip, toolBar[button4], "Delete selected account");
gtk_tooltips_set_tips (tooltip, toolBar[exit], "Exit GnoMoney.");
*/
gtk_tooltips_set_tip (tooltip, toolBar[open], "Open an account.", NULL);
gtk_tooltips_set_tip (tooltip, toolBar[close], "Create a new account.", NULL);
gtk_tooltips_set_tip (tooltip, toolBar[button3], "Edit selected account", NULL);
gtk_tooltips_set_tip (tooltip, toolBar[button4], "Delete selected account", NULL);
gtk_tooltips_set_tip (tooltip, toolBar[exit], "Exit GnoMoney.", NULL);
/* Pack the buttons into the toolbar */
gtk_box_pack_start(GTK_BOX(button_bar), toolBar[0], FALSE, FALSE, 0);

View File

@ -1,7 +1,7 @@
#
######################################################################
#********************************************************************
#* Makefile -- makefile for xacc/src *
#* Makefile -- makefile for xacc/src/gtk *
#* Copyright (C) 1997 Robin Clark *
#* *
#* This program is free software; you can redistribute it and/or *