summaryrefslogtreecommitdiffstats
path: root/src/sp-flowtext.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2017-02-04 10:22:35 +0000
committertavmjong-free <tavmjong@free.fr>2017-02-04 10:22:35 +0000
commit2a84c87bd1c6850a9bb9ad5b39f82d1dacb4b94d (patch)
tree96d622a4e1cb20e4e86b8a7fc38dd8d72cc9356c /src/sp-flowtext.cpp
parentDisable rotate guides in doc rotation (diff)
parentAdd some more comments to improve code understanding (diff)
downloadinkscape-2a84c87bd1c6850a9bb9ad5b39f82d1dacb4b94d.tar.gz
inkscape-2a84c87bd1c6850a9bb9ad5b39f82d1dacb4b94d.zip
Merge in GSoC style dialog. (Work in progress.)
(bzr r15471)
Diffstat (limited to 'src/sp-flowtext.cpp')
-rw-r--r--src/sp-flowtext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp
index 264558014..d79652bf4 100644
--- a/src/sp-flowtext.cpp
+++ b/src/sp-flowtext.cpp
@@ -535,7 +535,7 @@ Inkscape::XML::Node *SPFlowtext::getAsText()
this->layout.getSourceOfCharacter(it, &rawptr, &span_text_start_iter);
SPObject *source_obj = reinterpret_cast<SPObject *>(rawptr);
- Glib::ustring style_text = (dynamic_cast<SPString *>(source_obj) ? source_obj->parent : source_obj)->style->write( SP_STYLE_FLAG_IFDIFF, this->style);
+ Glib::ustring style_text = (dynamic_cast<SPString *>(source_obj) ? source_obj->parent : source_obj)->style->write( SP_STYLE_FLAG_IFDIFF, SP_STYLE_SRC_UNSET, this->style);
if (!style_text.empty()) {
span_tspan->setAttribute("style", style_text.c_str());
}