[gnumeric] remove debug code and update BUGS



commit abf829a38bf74de0abf2e2c4063eaec76727e96a
Author: Andreas J. Guelzow <aguelzow pyrshep ca>
Date:   Wed Jun 24 15:25:26 2009 -0600

    remove debug code and update BUGS
    
    2009-06-24 Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* openoffice-read.c
    	(odf_annotation_content_end): remove debug output
    	(odf_annotation_author_end): ditto

 BUGS                                 |    9 +++------
 plugins/openoffice/ChangeLog         |    6 ++++++
 plugins/openoffice/openoffice-read.c |    4 ----
 3 files changed, 9 insertions(+), 10 deletions(-)
---
diff --git a/BUGS b/BUGS
index 2f1d366..dae27e8 100644
--- a/BUGS
+++ b/BUGS
@@ -415,7 +415,7 @@ Architecture Changes
 	11.3.1) import
 	11.3.2) export
     11.4) ODF
-	11.4.1) import	(conditional number formats DONE)
+	11.4.1) import	                                        (partial)
 	11.4.2) export	(conditional number formats DONE)
     11.6) Evaluation
 	11.6.1) Custom						(DONE)
@@ -769,13 +769,10 @@ Architecture Changes
 
 36) OpenDocument (ODF)
     36.1) missing features in importer that we in fact export
-         36.1.1)  Cell Comments
+         36.1.1)  Cell Comments                                 (DONE)
     36.2) Import
          36.2.1)  We fail to do proper white space handling on import, see
-                 5.1.1 of the OpenDocument Standard. (It is only a minor
-                 issue since files created by OOo or us work correctly.
-                 In fact because of 36.3.1, we depend currently on this to
-                 read our own files.)
+                 5.1.1 of the OpenDocument Standard. 
 	36.2.2) default col/row compression on OOo import.	(DONE)
 	36.2.3) table styles					(DONE)
 	36.2.4) col/row manual vs auto
diff --git a/plugins/openoffice/ChangeLog b/plugins/openoffice/ChangeLog
index 75be0dd..f765604 100644
--- a/plugins/openoffice/ChangeLog
+++ b/plugins/openoffice/ChangeLog
@@ -1,5 +1,11 @@
 2009-06-24 Andreas J. Guelzow <aguelzow pyrshep ca>
 
+	* openoffice-read.c
+	(odf_annotation_content_end): remove debug output
+	(odf_annotation_author_end): ditto
+	
+2009-06-24 Andreas J. Guelzow <aguelzow pyrshep ca>
+
 	* openoffice-read.c (odf_scientific): handle gnm:engineering
 	(oo_style): initialize new fields
 	(oo_style_prop_cell): handle alignments (including our
diff --git a/plugins/openoffice/openoffice-read.c b/plugins/openoffice/openoffice-read.c
index 9b87583..904f104 100644
--- a/plugins/openoffice/openoffice-read.c
+++ b/plugins/openoffice/openoffice-read.c
@@ -3514,8 +3514,6 @@ odf_annotation_content_end (GsfXMLIn *xin, G_GNUC_UNUSED GsfXMLBlob *blob)
 	char const *old = cell_comment_text_get (state->cell_comment);
 	char *new;
 
-	g_print ("odf_annotation_content_end: %s\n",  xin->content->str);
-
 	if (old != NULL && strlen (old) > 0)
 		new = g_strconcat (old, "\n", xin->content->str, NULL);
 	else
@@ -3529,8 +3527,6 @@ odf_annotation_author_end (GsfXMLIn *xin, G_GNUC_UNUSED GsfXMLBlob *blob)
 {
 	OOParseState *state = (OOParseState *)xin->user_state;
 
-	g_print ("odf_annotation_author_end: %s\n",  xin->content->str);
-
 	cell_comment_author_set (state->cell_comment, xin->content->str);
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]