~bibledit/bibledit/client

« back to all changes in this revision

Viewing changes to export/odt.cpp

  • Committer: teusjannette at gmail
  • Date: 2021-10-15 18:20:48 UTC
  • Revision ID: teusjannette@gmail.com-20211015182048-jxzor4v0vphq2avn
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
        usfm = usfm_remove_w_attributes (usfm);
78
78
        usfm = filter_string_trim (usfm);
79
79
        // Use small chunks of USFM at a time for much better performance.
80
 
        filter_text.addUsfmCode (usfm);
 
80
        filter_text.add_usfm_code (usfm);
81
81
      }
82
82
    }
83
83
  } else {
89
89
      usfm = usfm_remove_w_attributes (usfm);
90
90
      usfm = filter_string_trim (usfm);
91
91
      // Use small chunks of USFM at a time for much better performance.
92
 
      filter_text.addUsfmCode (usfm);
 
92
      filter_text.add_usfm_code (usfm);
93
93
    }
94
94
  }
95
95