Mercurial > gftp.yaz
changeset 544:79908ac335d2
2004-9-6 Brian Masney <masneyb@gftp.org>
* src/gtk/bookmarks.c - make sure that edit_bookmarks_dialog is
initialized to NULL
author | masneyb |
---|---|
date | Tue, 07 Sep 2004 01:01:04 +0000 |
parents | 87ea7ff84a5d |
children | e850102b64be |
files | ChangeLog src/gtk/bookmarks.c |
diffstat | 2 files changed, 9 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Sep 03 16:07:18 2004 +0000 +++ b/ChangeLog Tue Sep 07 01:01:04 2004 +0000 @@ -1,3 +1,7 @@ +2004-9-6 Brian Masney <masneyb@gftp.org> + * src/gtk/bookmarks.c - make sure that edit_bookmarks_dialog is + initialized to NULL + 2004-8-21 Brian Masney <masneyb@gftp.org> * lib/gftp.h lib/options.h lib/protocols.c - added gftp_protocol_default_port() that will return the default port for @@ -2787,7 +2791,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.314 2004/08/21 15:49:34 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.315 2004/09/07 01:01:04 masneyb Exp $ tags * debian/* - updated files from Debian maintainer
--- a/src/gtk/bookmarks.c Fri Sep 03 16:07:18 2004 +0000 +++ b/src/gtk/bookmarks.c Tue Sep 07 01:01:04 2004 +0000 @@ -20,10 +20,10 @@ #include "gftp-gtk.h" static const char cvsid[] = "$Id$"; -static GtkWidget * bm_dialog = NULL, * bm_hostedit, * bm_portedit, - * bm_localdiredit, * bm_remotediredit, * bm_useredit, - * bm_passedit, * bm_acctedit, * anon_chk, * bm_pathedit, - * bm_protocol, * tree, * edit_bookmarks_dialog; +static GtkWidget * bm_dialog = NULL, * edit_bookmarks_dialog = NULL; +static GtkWidget * bm_hostedit, * bm_portedit, * bm_localdiredit, + * bm_remotediredit, * bm_useredit, * bm_passedit, * tree, + * bm_acctedit, * anon_chk, * bm_pathedit, * bm_protocol; static GHashTable * new_bookmarks_htable = NULL; static gftp_bookmarks_var * new_bookmarks = NULL; static GtkItemFactory * edit_factory;