]> git.lyx.org Git - lyx.git/blobdiff - src/metricsinfo.h
Fix bug 886 and others not reported related with the document paper size.
[lyx.git] / src / metricsinfo.h
index d0cd5580f8dbc5ff5c28aa788d0df3d4cc21da5d..c924bd94672d581095a27aa16290e30f3346aee3 100644 (file)
@@ -97,12 +97,14 @@ class TextMetricsInfo {};
 class ViewMetricsInfo
 {
 public:
-       ViewMetricsInfo(lyx::pit_type p1, lyx::pit_type p2,
-                       int y1, int y2) : p1(p1), p2(p2), y1(y1), y2(y2) {}
+       ViewMetricsInfo(lyx::pit_type p1, lyx::pit_type p2, int y1, int y2,
+                       bool singlepar) : p1(p1), p2(p2), y1(y1), y2(y2),
+                       singlepar(singlepar) {}
        lyx::pit_type p1;
        lyx::pit_type p2;
        int y1;
        int y2;
+       bool singlepar;
 };