Code

Cleaned up more of the gboolean to bool janitorial task...great!
[inkscape.git] / src / document.cpp
index 04d3a147c3e711768c469eb9633210af8ead2efd..ebc65830f1bbc90c9db4969b5ea5129cf8c8aed1 100644 (file)
@@ -66,6 +66,8 @@
 
 static gint sp_document_idle_handler(gpointer data);
 
+// JON: This must stay as gboolean because its used as a callback into
+// our legacy c stuff in here. Would like to make bool
 gboolean sp_document_resource_list_free(gpointer key, gpointer value, gpointer data);
 
 static gint doc_count = 0;
@@ -1106,6 +1108,8 @@ sigc::connection sp_document_resources_changed_connect(SPDocument *document,
 
 /* Helpers */
 
+// JON: This must stay this way because it is used as a callback for 
+// legacy glib code which needs to be moved to glibmm
 gboolean
 sp_document_resource_list_free(gpointer key, gpointer value, gpointer data)
 {