Code

Cleaned up test doc creation
authorjoncruz <joncruz@users.sourceforge.net>
Sat, 12 May 2007 19:15:27 +0000 (19:15 +0000)
committerjoncruz <joncruz@users.sourceforge.net>
Sat, 12 May 2007 19:15:27 +0000 (19:15 +0000)
src/document.cpp
src/document.h
src/sp-style-elem.cpp
src/test-helpers.h

index 6ab08ffb62c7b5165bd38baee66bdcb09cd1ae2c..f4ebfb7cb7cf95c823c4a59b6fac86d11da9a032 100644 (file)
@@ -405,11 +405,6 @@ sp_document_new_from_mem(gchar const *buffer, gint length, unsigned int keepaliv
     return doc;
 }
 
-SPDocument *sp_document_new_dummy() {
-    SPDocument *document = new SPDocument();
-    return document;
-}
-
 SPDocument *
 sp_document_ref(SPDocument *doc)
 {
index d9acc93fc294b6457b8ef897230baaf1b0f9794e..94b97631438ca070619b715abd2a9d34f3221822 100644 (file)
@@ -141,7 +141,6 @@ public:
 
 SPDocument *sp_document_new (const gchar *uri, unsigned int keepalive, bool make_new = false);
 SPDocument *sp_document_new_from_mem (const gchar *buffer, gint length, unsigned int keepalive);
-SPDocument *sp_document_new_dummy(); 
 
 SPDocument *sp_document_ref (SPDocument *doc);
 SPDocument *sp_document_unref (SPDocument *doc);
index 63a9bae38abdb413d8811fddc74dd7f25d403731..fa756242cab2dc53ba362d438b608dcd509241c0 100644 (file)
@@ -367,7 +367,9 @@ sp_style_elem_read_content(SPObject *const object)
     // that uses a style from it. It just forces the parent of <style> to reread its style as soon as the stylesheet
     // is fully loaded. Naturally, this won't work if the user of the stylesheet is its grandparent or precedent.
     SPObject *parent = SP_OBJECT_PARENT (object);
-    sp_style_read_from_object(parent->style, parent);
+    if ( parent ) {
+        sp_style_read_from_object(parent->style, parent);
+    }
 }
 
 /**
index 594f4b7ae8185b55f876afbcfb17b365a5f5191a..8dba0c942e23a81d16dfe7350733bbc2bd420602 100644 (file)
@@ -32,7 +32,7 @@ T* createSuiteAndDocument( void (*fun)(T*&) )
         static_cast<void>(g_object_new(inkscape_get_type(), NULL));
     }
 
-    SPDocument* tmp = sp_document_new_dummy();
+    SPDocument* tmp = sp_document_new( NULL, TRUE, true );
     if ( tmp ) {
         fun( suite );
         if ( suite )