]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiHSpace.cpp
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / GuiHSpace.cpp
index 43a4e89b6ffc597f13b937eb3d13f530f2c79a35..5afc992532e35e9f378fa167650cb81f44d186d0 100644 (file)
@@ -19,6 +19,7 @@
 #include "LyXRC.h"
 #include "Spacing.h"
 #include "FuncRequest.h"
+
 #include "insets/InsetSpace.h"
 
 #include "support/gettext.h"
@@ -95,6 +96,12 @@ void GuiHSpace::enableWidgets(int selection)
                selection == 0 || selection == 3  ||
                (selection == 6 && pattern == 0) || selection == 7;
        keepCB->setEnabled(enable_keep);
+       if (selection == 3)
+               keepCB->setToolTip(qt_("Insert the spacing even after a line break.\n"
+                                      "Note that a protected Half Quad will be turned into\n"
+                                      "a vertical space if used at the beginning of a paragraph!"));
+       else
+               keepCB->setToolTip(qt_("Insert the spacing even after a line break"));
        changed();
 }
 
@@ -248,9 +255,8 @@ void GuiHSpace::updateContents()
 
 bool GuiHSpace::initialiseParams(string const & data)
 {
-       InsetSpaceMailer::string2params(data, params_);
+       InsetSpace::string2params(data, params_);
        setButtonsValid(true);
-
        return true;
 }
 
@@ -263,13 +269,13 @@ void GuiHSpace::clearParams()
 
 void GuiHSpace::dispatchParams()
 {
-       dispatch(FuncRequest(getLfun(), InsetSpaceMailer::params2string(params_)));
+       dispatch(FuncRequest(getLfun(), InsetSpace::params2string(params_)));
 }
 
 
 bool GuiHSpace::isValid()
 {
-       return (spacingCO->currentIndex() != 7 || !valueLE->text().isEmpty());
+       return spacingCO->currentIndex() != 7 || !valueLE->text().isEmpty();
 }