diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-09-25 05:15:59 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-09-25 05:15:59 +0800 |
commit | e779a925838d3a0786f836e0c572ee704cce5efe (patch) | |
tree | cb10fd452055f07d74217e2ecf593cfc52f12b07 | |
parent | 0035cdee4c17f9b663b13bb234ce3bc5ee22c3af (diff) | |
download | gsoc2013-evolution-e779a925838d3a0786f836e0c572ee704cce5efe.tar gsoc2013-evolution-e779a925838d3a0786f836e0c572ee704cce5efe.tar.gz gsoc2013-evolution-e779a925838d3a0786f836e0c572ee704cce5efe.tar.bz2 gsoc2013-evolution-e779a925838d3a0786f836e0c572ee704cce5efe.tar.lz gsoc2013-evolution-e779a925838d3a0786f836e0c572ee704cce5efe.tar.xz gsoc2013-evolution-e779a925838d3a0786f836e0c572ee704cce5efe.tar.zst gsoc2013-evolution-e779a925838d3a0786f836e0c572ee704cce5efe.zip |
Make the printouts here conditionally compiled out.
2001-09-24 Christopher James Lahey <clahey@ximian.com>
* e-categories-master-list-wombat.c (ecmlw_load, ecmlw_save): Make
the printouts here conditionally compiled out.
svn path=/trunk/; revision=13100
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-categories-master-list-wombat.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index ada47cadf3..5233e27103 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2001-09-24 Christopher James Lahey <clahey@ximian.com> + + * e-categories-master-list-wombat.c (ecmlw_load, ecmlw_save): Make + the printouts here conditionally compiled out. + 2001-09-21 <NotZed@Ximian.com> * e-msgport.c (e_thread_destroy): Instead of using diff --git a/e-util/e-categories-master-list-wombat.c b/e-util/e-categories-master-list-wombat.c index 8ee2981e8f..29318dec04 100644 --- a/e-util/e-categories-master-list-wombat.c +++ b/e-util/e-categories-master-list-wombat.c @@ -51,7 +51,7 @@ ecmlw_load (ECategoriesMasterListWombat *ecmlw) string); } - g_print ("load: %s\n", string?string:"(nil)"); + d(g_print ("load: %s\n", string?string:"(nil)")); g_free (string); } @@ -64,7 +64,7 @@ ecmlw_save (ECategoriesMasterListWombat *ecmlw) string = e_categories_master_list_array_to_string (E_CATEGORIES_MASTER_LIST_ARRAY (ecmlw)); - g_print ("save: %s\n", string); + d(g_print ("save: %s\n", string)); CORBA_exception_init (&ev); |