summaryrefslogtreecommitdiffstats
path: root/src/uri.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-04 02:23:52 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-04 02:23:52 +0000
commitd627dc64423f864c9320c73a52b47836c696bceb (patch)
tree6dd2947cf2adc65ae0afb361e081a1fd0ae31928 /src/uri.cpp
parentFixed path color when changed by Objects Dialog (diff)
parentRemove dom/* code and replace two uses of dom/uri with uri. (diff)
downloadinkscape-d627dc64423f864c9320c73a52b47836c696bceb.tar.gz
inkscape-d627dc64423f864c9320c73a52b47836c696bceb.zip
Merge to trunk
(bzr r13090.1.12)
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;