From e254e5c6ced93403c125592237b43215bde7b0ff Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Date: Mon, 23 Apr 2018 23:34:58 +0200 Subject: Fixing LPE recalculations warnings on update --- src/object/sp-path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/object/sp-path.cpp') diff --git a/src/object/sp-path.cpp b/src/object/sp-path.cpp index 4d1f1311f..de31b45e2 100644 --- a/src/object/sp-path.cpp +++ b/src/object/sp-path.cpp @@ -280,7 +280,7 @@ Inkscape::XML::Node* SPPath::write(Inkscape::XML::Document *xml_doc, Inkscape::X g_message("sp_path_write writes 'd' attribute"); #endif - if ( this->_curve != NULL ) { + if (this->_curve) { gchar *str = sp_svg_write_path(this->_curve->get_pathvector()); repr->setAttribute("d", str); g_free(str); -- cgit v1.2.3