summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 81df213)
raw | patch | inline | side by side (parent: 81df213)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Wed, 4 Jul 2007 01:29:33 +0000 (01:29 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Wed, 4 Jul 2007 01:29:33 +0000 (01:29 +0000) |
src/sp-item.cpp | patch | blob | history |
diff --git a/src/sp-item.cpp b/src/sp-item.cpp
index 8a557f5d0173c0052188549db65b6797dc14c823..469b95222cba39a74e921de55a31113367bae5a6 100644 (file)
--- a/src/sp-item.cpp
+++ b/src/sp-item.cpp
#include "util/reverse-list.h"
#include "xml/repr.h"
+#include "extract-uri.h"
#define noSP_ITEM_DEBUG_IDLE
break;
}
case SP_PROP_CLIP_PATH: {
- gchar *uri = Inkscape::parse_css_url(value);
+ gchar *uri = extract_uri(value);
if (uri) {
try {
item->clip_ref->attach(Inkscape::URI(uri));
break;
}
case SP_PROP_MASK: {
- gchar *uri=Inkscape::parse_css_url(value);
+ gchar *uri = extract_uri(value);
if (uri) {
try {
item->mask_ref->attach(Inkscape::URI(uri));