]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormVSpace.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / FormVSpace.C
index 143ada2f31257666d6ea0150a69bde8f01ca4f98..09777af5fea69ecfdb17c37f723dad7febcd0fe7 100644 (file)
@@ -75,7 +75,7 @@ VSpace const setVSpaceFromWidgets(FL_OBJECT * choice_type,
                     input_length  && input_length->objclass  == FL_INPUT &&
                     choice_length && choice_length->objclass == FL_CHOICE);
 
-       VSpace space = VSpace(VSpace::DEFSKIP);
+       VSpace space;
 
        switch (fl_get_choice(choice_type)) {
        case 1:
@@ -226,10 +226,6 @@ void FormVSpace::build()
 
 void FormVSpace::apply()
 {
-       if (!form())
-               return;
-
-       // spacing
        // If a vspace choice is "Length" but there's no text in
        // the input field, insert nothing.
        validateVSpaceWidgets(dialog_->choice_space, dialog_->input_space);
@@ -261,8 +257,8 @@ void FormVSpace::update()
 
 ButtonPolicy::SMInput FormVSpace::input(FL_OBJECT * ob, long)
 {
-       // Enable input when custum length is choosen,
-       // disable 'keep' when no space is choosen
+       // Enable input when custom length is chosen,
+       // disable 'keep' when no space is chosen
        if (ob == dialog_->choice_space) {
                bool const custom_length =
                        fl_get_choice(dialog_->choice_space) == 6;