]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphMetrics.cpp
Revert "Objective-C compililation support with cmake and C++11"
[lyx.git] / src / ParagraphMetrics.cpp
index d4ff656449ace627c47a9365e8bd51bb122f6da9..b1396dfdfe1cde456a7c84e45d80abf7e7e5b4b2 100644 (file)
@@ -92,7 +92,7 @@ size_t ParagraphMetrics::computeRowSignature(Row const & row,
        for (pos_type i = row.pos(); i < row.endpos(); ++i) {
                char_type const b[] = { par_->getChar(i) };
                crc.process_bytes(b, sizeof(char_type));
-               if (bparams.trackChanges) {
+               if (bparams.track_changes) {
                        Change change = par_->lookupChange(i);
                        char_type const b[] = { static_cast<char_type>(change.type) };
                        // 1 byte is enough to encode Change::Type