Code

Prevent localized doubles from being written into filter matrices
[inkscape.git] / src / test-helpers.h
index 594f4b7ae8185b55f876afbcfb17b365a5f5191a..e1b8521621b6fc9c14bf55de0e0c47d653a80c2c 100644 (file)
@@ -1,4 +1,3 @@
-
 #ifndef SEEN_TEST_HELPERS_H
 #define SEEN_TEST_HELPERS_H
 
@@ -32,7 +31,7 @@ T* createSuiteAndDocument( void (*fun)(T*&) )
         static_cast<void>(g_object_new(inkscape_get_type(), NULL));
     }
 
-    SPDocument* tmp = sp_document_new_dummy();
+    SPDocument* tmp = SPDocument::createNewDoc( NULL, TRUE, true );
     if ( tmp ) {
         fun( suite );
         if ( suite )
@@ -41,7 +40,7 @@ T* createSuiteAndDocument( void (*fun)(T*&) )
         }
         else
         {
-            sp_document_unref( tmp );
+            tmp->doUnref();
         }
     }
 
@@ -61,4 +60,4 @@ T* createSuiteAndDocument( void (*fun)(T*&) )
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :