]> git.lyx.org Git - lyx.git/blobdiff - src/ParameterStruct.h
more cursor dispatch
[lyx.git] / src / ParameterStruct.h
index 902b2222b3de399fdfc419021ac0e8a39d183bdb..5b0543e44152976974e69db258b879a212f276f1 100644 (file)
@@ -15,7 +15,6 @@
 #include "layout.h"
 #include "lyxlength.h"
 #include "Spacing.h"
-#include "vspace.h"
 
 #include "support/types.h"
 
@@ -27,10 +26,6 @@ struct ParameterStruct {
        ///
        ParameterStruct();
        ///
-       VSpace added_space_top;
-       ///
-       VSpace added_space_bottom;
-       ///
        Spacing spacing;
        ///
        bool noindent;
@@ -63,9 +58,8 @@ inline
 bool operator==(ParameterStruct const & ps1,
                ParameterStruct const & ps2)
 {
-       return ps1.added_space_top == ps2.added_space_top
-               && ps1.added_space_bottom == ps2.added_space_bottom
-               && ps1.spacing == ps2.spacing
+       return
+                  ps1.spacing == ps2.spacing
                && ps1.noindent == ps2.noindent
                && ps1.align == ps2.align
                && ps1.depth == ps2.depth