diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-03-29 07:57:26 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-03-29 07:57:26 +0800 |
commit | f4f6f8ceb5c086d92b6e4c16bdaa97289e09b709 (patch) | |
tree | f8705e0ab4f27f07ae8a58299177516c77ce7f70 | |
parent | 74292600ef7fa99759f3681981d5bd8945c58798 (diff) | |
download | gsoc2013-evolution-f4f6f8ceb5c086d92b6e4c16bdaa97289e09b709.tar gsoc2013-evolution-f4f6f8ceb5c086d92b6e4c16bdaa97289e09b709.tar.gz gsoc2013-evolution-f4f6f8ceb5c086d92b6e4c16bdaa97289e09b709.tar.bz2 gsoc2013-evolution-f4f6f8ceb5c086d92b6e4c16bdaa97289e09b709.tar.lz gsoc2013-evolution-f4f6f8ceb5c086d92b6e4c16bdaa97289e09b709.tar.xz gsoc2013-evolution-f4f6f8ceb5c086d92b6e4c16bdaa97289e09b709.tar.zst gsoc2013-evolution-f4f6f8ceb5c086d92b6e4c16bdaa97289e09b709.zip |
Don't print the xml tree here.
2001-03-28 Christopher James Lahey <clahey@ximian.com>
* menus/gal-view-menus.c (build_menus): Don't print the xml tree
here.
svn path=/trunk/; revision=9003
-rw-r--r-- | widgets/ChangeLog | 5 | ||||
-rw-r--r-- | widgets/menus/gal-view-menus.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/widgets/ChangeLog b/widgets/ChangeLog index 80e49ef174..cc5e787165 100644 --- a/widgets/ChangeLog +++ b/widgets/ChangeLog @@ -1,3 +1,8 @@ +2001-03-28 Christopher James Lahey <clahey@ximian.com> + + * menus/gal-view-menus.c (build_menus): Don't print the xml tree + here. + 2001-03-16 Miguel de Icaza <miguel@ximian.com> * menus/gal-view-menus.c (build_menus): Hook this up under the diff --git a/widgets/menus/gal-view-menus.c b/widgets/menus/gal-view-menus.c index 6dc4633c84..ef0c25a2ee 100644 --- a/widgets/menus/gal-view-menus.c +++ b/widgets/menus/gal-view-menus.c @@ -30,6 +30,8 @@ static GtkObjectClass *gvm_parent_class; static void collection_changed (GalViewCollection *collection, GalViewMenus *gvm); +#define d(x) + typedef struct { GalViewCollection *collection; GalView *view; @@ -196,7 +198,7 @@ build_menus(GalViewMenus *menus) bonobo_ui_node_free(root); - g_print (xml); + d(g_print (xml)); return xml; } |