]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphMetrics.cpp
Adjust indentation after ff42fea8.
[lyx.git] / src / ParagraphMetrics.cpp
index 97170bb96ab863623bd10390d7d017eb9cd61122..0e37c5f5d9b2e139bba01288b1c83cf0eace2891 100644 (file)
@@ -97,13 +97,17 @@ size_t ParagraphMetrics::computeRowSignature(Row const & row,
                        char_type const b[] = { static_cast<char_type>(change.type) };
                        // 1 byte is enough to encode Change::Type
                        crc.process_bytes(b, 1);
-               }                       
+               }
        }
 
        Dimension const & d = row.dimension();
        char_type const b[] = { static_cast<char_type>(row.sel_beg),
-                               static_cast<char_type>(row.sel_end),
-               row.begin_margin_sel, row.end_margin_sel, d.wid, d.asc, d.des};
+                               static_cast<char_type>(row.sel_end),
+                               row.begin_margin_sel,
+                               row.end_margin_sel,
+                               reinterpret_cast<char_type const *>(&row.separator)[0],
+                               reinterpret_cast<char_type const *>(&row.separator)[1],
+                               d.wid, d.asc, d.des };
        crc.process_bytes(b, sizeof(b));
 
        return crc.checksum();