summaryrefslogtreecommitdiff
path: root/writerperfect
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-09-03 16:50:32 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-09-03 16:53:49 +0200
commit41201afceaa83df369ac0213f047f43061c448ae (patch)
tree697bf398198b04ca747e22c9c2db661435151754 /writerperfect
parentfd9905e99cc46c54753eb6f79940952a35256add (diff)
Actually show some text
Diffstat (limited to 'writerperfect')
-rw-r--r--writerperfect/source/filter/OdgGenerator.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/writerperfect/source/filter/OdgGenerator.cxx b/writerperfect/source/filter/OdgGenerator.cxx
index 4cc81b000aee..a002ea602e63 100644
--- a/writerperfect/source/filter/OdgGenerator.cxx
+++ b/writerperfect/source/filter/OdgGenerator.cxx
@@ -715,7 +715,6 @@ void OdgGeneratorPrivate::_drawPolySomething(const ::WPXPropertyListVector& vert
WPXString sValue;
sValue.sprintf("gr%i", miGraphicsStyleIndex-1);
pDrawLineElement->addAttribute("draw:style-name", sValue);
- pDrawLineElement->addAttribute("draw:text-style-name", "P1");
pDrawLineElement->addAttribute("draw:layer", "layout");
pDrawLineElement->addAttribute("svg:x1", vertices[0]["svg:x"]->getStr());
pDrawLineElement->addAttribute("svg:y1", vertices[0]["svg:y"]->getStr());
@@ -820,7 +819,6 @@ void OdgGeneratorPrivate::_drawPath(const WPXPropertyListVector& path)
TagOpenElement *pDrawPathElement = new TagOpenElement("draw:path");
sValue.sprintf("gr%i", miGraphicsStyleIndex-1);
pDrawPathElement->addAttribute("draw:style-name", sValue);
- pDrawPathElement->addAttribute("draw:text-style-name", "P1");
pDrawPathElement->addAttribute("draw:layer", "layout");
sValue = doubleToString(px); sValue.append("in");
pDrawPathElement->addAttribute("svg:x", sValue);
@@ -1196,6 +1194,7 @@ void OdgGenerator::startTextObject(WPXPropertyList const &propList, WPXPropertyL
mpImpl->mGraphicsAutomaticStyles.push_back(pStyleStyleOpenElement);
pDrawFrameOpenElement->addAttribute("draw:style-name", sValue);
+ pDrawFrameOpenElement->addAttribute("draw:layer", "layout");
TagOpenElement *pStyleGraphicPropertiesOpenElement = new TagOpenElement("style:graphic-properties");
pStyleGraphicPropertiesOpenElement->addAttribute("draw:stroke", "none");
@@ -1212,9 +1211,10 @@ void OdgGenerator::startTextObject(WPXPropertyList const &propList, WPXPropertyL
{
if (!propList["fo:min-width"])
{
- pDrawFrameOpenElement->addAttribute("fo:min-width", "0in");
- pStyleGraphicPropertiesOpenElement->addAttribute("fo:min-width", "0in");
+ pDrawFrameOpenElement->addAttribute("fo:min-width", "1in");
+ pStyleGraphicPropertiesOpenElement->addAttribute("fo:min-width", "1in");
}
+ pDrawFrameOpenElement->addAttribute("svg:width", "10in");
}
else
{
@@ -1273,12 +1273,12 @@ void OdgGenerator::endTextLine()
void OdgGenerator::startTextSpan(WPXPropertyList const&)
{
- mpImpl->mBodyElements.push_back(new TagOpenElement("text:s"));
+// mpImpl->mBodyElements.push_back(new TagOpenElement("text:s"));
}
void OdgGenerator::endTextSpan()
{
- mpImpl->mBodyElements.push_back(new TagCloseElement("text:s"));
+// mpImpl->mBodyElements.push_back(new TagCloseElement("text:s"));
}
void OdgGenerator::insertText(WPXString const &text)