summaryrefslogtreecommitdiffstats
path: root/src/uri.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-03-04 00:58:04 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-03-04 00:58:04 +0000
commitf1530b9514426884c349c1bc63686f95108c4da1 (patch)
treecd54a2cb6ac8955441f0065d5ef94021b1c185cf /src/uri.cpp
parentupdate to trunk (diff)
parentRemove dom/* code and replace two uses of dom/uri with uri. (diff)
downloadinkscape-f1530b9514426884c349c1bc63686f95108c4da1.tar.gz
inkscape-f1530b9514426884c349c1bc63686f95108c4da1.zip
update to trunk
(bzr r11950.1.271)
Diffstat (limited to 'src/uri.cpp')
-rw-r--r--src/uri.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/uri.cpp b/src/uri.cpp
index 89f6f33e4..e81d108c9 100644
--- a/src/uri.cpp
+++ b/src/uri.cpp
@@ -16,6 +16,11 @@
namespace Inkscape {
+URI::URI() {
+ const gchar *in = "";
+ _impl = Impl::create(xmlParseURI(in));
+}
+
URI::URI(const URI &uri) {
uri._impl->reference();
_impl = uri._impl;