]> git.lyx.org Git - lyx.git/blobdiff - src/Row.cpp
* pl.po remerge by autotools
[lyx.git] / src / Row.cpp
index 87e0d92775b5bcbef30070249871db82ff4f647e..66b1726d89bd04e09af044f9977cd945e755803e 100644 (file)
@@ -4,10 +4,10 @@
  * Licence details can be found in the file COPYING.
  *
  * \author unknown
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author John Levon
- * \author André Pönitz
- * \author Jürgen Vigna
+ * \author André Pönitz
+ * \author Jürgen Vigna
  *
  * Full author contact details are available in file CREDITS.
  *
@@ -29,7 +29,7 @@ namespace lyx {
 Row::Row()
        : separator(0), label_hfill(0), x(0),
        sel_beg(-1), sel_end(-1),
-       left_margin_sel(false), right_margin_sel(false), 
+       begin_margin_sel(false), end_margin_sel(false), 
        changed_(false), crc_(0), pos_(0), end_(0)
 {}
 
@@ -93,8 +93,8 @@ void Row::setSelectionAndMargins(DocIterator const & beg,
        setSelection(beg.pos(), end.pos());
        
        if (selection()) {
-               right_margin_sel = isMarginSelected(false, beg, end);
-               left_margin_sel = isMarginSelected(true, beg, end);
+               end_margin_sel = isMarginSelected(false, beg, end);
+               begin_margin_sel = isMarginSelected(true, beg, end);
        }
 }