Commit fc87cb06 authored by Claudio Valerio's avatar Claudio Valerio

fixed some build issues

parent dbc0f592
...@@ -1902,6 +1902,9 @@ void UBSvgSubsetAdaptor::UBSvgSubsetWriter::svgItemToLinkedSvg(UBGraphicsSvgItem ...@@ -1902,6 +1902,9 @@ void UBSvgSubsetAdaptor::UBSvgSubsetWriter::svgItemToLinkedSvg(UBGraphicsSvgItem
mXmlWriter.writeStartElement("image"); mXmlWriter.writeStartElement("image");
QString fileName = UBPersistenceManager::imageDirectory + "/" + svgItem->uuid().toString() + ".svg";
mXmlWriter.writeAttribute(nsXLink, "href", fileName); mXmlWriter.writeAttribute(nsXLink, "href", fileName);
graphicsItemToSvg(svgItem); graphicsItemToSvg(svgItem);
......
...@@ -1154,7 +1154,7 @@ UBItem *UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QUrl ...@@ -1154,7 +1154,7 @@ UBItem *UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QUrl
if (!file.open(QIODevice::WriteOnly)) if (!file.open(QIODevice::WriteOnly))
{ {
qWarning() << "cannot open file for writing embeded svg content " << path; qWarning() << "cannot open file for writing embeded svg content " << path;
return; return NULL;
} }
file.write(svgItem->fileData()); file.write(svgItem->fileData());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment