summaryrefslogtreecommitdiffstats
path: root/src/color-profile.cpp
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2014-03-18 18:30:41 +0000
committerJazzyNico <nicoduf@yahoo.fr>2014-03-18 18:30:41 +0000
commitbb21b145819e999294e711058b26d97e0527a646 (patch)
treea106db30d7eab36f639cc507418328b866c060f4 /src/color-profile.cpp
parentFix weighted removal of attributes from style in merge extension. (diff)
downloadinkscape-bb21b145819e999294e711058b26d97e0527a646.tar.gz
inkscape-bb21b145819e999294e711058b26d97e0527a646.zip
Fix for Bug #1291546 (Linking color profile from Document properties dialog crashes Inkscape).
Fixed bugs: - https://launchpad.net/bugs/1291546 (bzr r13165)
Diffstat (limited to 'src/color-profile.cpp')
-rw-r--r--src/color-profile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/color-profile.cpp b/src/color-profile.cpp
index 09eaa36e5..ed4b9029e 100644
--- a/src/color-profile.cpp
+++ b/src/color-profile.cpp
@@ -339,7 +339,7 @@ void ColorProfile::set(unsigned key, gchar const *value) {
Inkscape::URI hrefUri(escaped);
//# 3. Resolve the href according the docBase. This follows
// the w3c specs. All absolute and relative issues are considered
- std::string fullpath = docUri.getFullPath(hrefUri.getFullPath(""));
+ std::string fullpath = hrefUri.getFullPath(docUri.getFullPath(""));
gchar* fullname = g_uri_unescape_string(fullpath.c_str(), "");
this->impl->_clearProfile();