Skip to content

Commit

Permalink
Change fix to work in OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
markummitchell-tu committed Oct 7, 2017
1 parent 515a250 commit 3dac352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Export/ExportFileAbstractBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ QString ExportFileAbstractBase::wrapInDoubleQuotesIfNeeded (const DocumentModelE
(valueString.indexOf (",") >= 0)) {

// Eliminate ambiguities according to RFC 4180
newValueString = """" + valueString + """";
newValueString = QString ("\"%1\"").arg (valueString);
}

return newValueString;
Expand Down

0 comments on commit 3dac352

Please sign in to comment.