From b3dd30121c41d053118cb3fb38f2ea79eb2fafb6 Mon Sep 17 00:00:00 2001 From: mental Date: Wed, 24 Jan 2007 04:52:34 +0000 Subject: [PATCH] remove sp_repr_new from style tests --- src/sp-style-elem-test.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sp-style-elem-test.h b/src/sp-style-elem-test.h index e5b2e8a48..8f52e8afd 100644 --- a/src/sp-style-elem-test.h +++ b/src/sp-style-elem-test.h @@ -77,7 +77,7 @@ public: SP_OBJECT(style_elem)->document = _doc; sp_object_set(SP_OBJECT(style_elem), SP_ATTR_TYPE, "text/css"); - Inkscape::XML::Node *repr = sp_repr_new("svg:style"); + Inkscape::XML::Node *repr = sp_document_repr_doc(_doc)->createElement("svg:style"); SP_OBJECT(style_elem)->updateRepr(repr, SP_OBJECT_WRITE_ALL); { gchar const *typ = repr->attribute("type"); @@ -94,7 +94,7 @@ public: void testBuild() { SPStyleElem &style_elem = *SP_STYLE_ELEM(g_object_new(SP_TYPE_STYLE_ELEM, NULL)); - Inkscape::XML::Node *const repr = sp_repr_new("svg:style"); + Inkscape::XML::Node *const repr = sp_document_repr_doc(_doc)->createElement("svg:style"); repr->setAttribute("type", "text/css"); sp_object_invoke_build(&style_elem, _doc, repr, false); TS_ASSERT( style_elem.is_css ); @@ -116,9 +116,9 @@ public: void testReadContent() { SPStyleElem &style_elem = *SP_STYLE_ELEM(g_object_new(SP_TYPE_STYLE_ELEM, NULL)); - Inkscape::XML::Node *const repr = sp_repr_new("svg:style"); + Inkscape::XML::Node *const repr = sp_document_repr_doc(_doc)->createElement("svg:style"); repr->setAttribute("type", "text/css"); - Inkscape::XML::Node *const content_repr = sp_repr_new_text(".myclass { }"); + Inkscape::XML::Node *const content_repr = sp_document_repr_doc(_doc)->createTextNode(".myclass { }"); repr->addChild(content_repr, NULL); sp_object_invoke_build(&style_elem, _doc, repr, false); TS_ASSERT( style_elem.is_css ); -- 2.30.2