Remove curly quotes for MWS and apprentice export

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1038 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2008-08-02 20:43:45 +00:00
parent de0817099a
commit 76d2eb7d42
5 changed files with 31 additions and 18 deletions
+1 -1
View File
@@ -358,7 +358,7 @@ void ApprDistro::writeD(wxTextOutputStream& tout, const String& name, int c, int
/// Untag function for apprentice, replaces newlines with \r\n
String untag_appr(const String& s) {
return replace_all(untag(s), _("\n"), _("\r\n"));
return replace_all(untag(curly_quotes(s,false)), _("\n"), _("\r\n"));
}
DECLARE_POINTER_TYPE(ApprCardRecord);