]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTabular.cpp
update author settings for the files I recently notably modified
[lyx.git] / src / insets / InsetTabular.cpp
index aa9ceb85a84cdff06c52a47f5d8d751f7d907272..614d479eebbd8a9a49193cf64126afddd976c819 100644 (file)
@@ -11,6 +11,7 @@
  * \author John Levon
  * \author André Pönitz
  * \author Jürgen Vigna
+ * \author Uwe Stöhr
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -2310,7 +2311,7 @@ int Tabular::TeXRow(odocstream & os, row_type i,
        if (row_info[i].caption && !endfirsthead.empty && !haveLTFirstHead())
                // if no first header and no empty first header is used,
                // the caption needs to be terminated by \endfirsthead
-               // (bug 6056)
+               // (bug 6057)
                os << "\\endfirsthead";
        else
                os << "\\tabularnewline";
@@ -3709,8 +3710,7 @@ void InsetTabular::doDispatch(Cursor & cur, FuncRequest & cmd)
                if (cur.selIsMultiCell()) {
                        cur.recordUndoInset(DELETE_UNDO);
                        cutSelection(cur);
-               }
-               else
+               } else
                        cell(cur.idx())->dispatch(cur, cmd);
                break;
 
@@ -5158,17 +5158,17 @@ void InsetTabular::setChange(Change const & change)
 }
 
 
-void InsetTabular::acceptChanges(BufferParams const & bparams)
+void InsetTabular::acceptChanges()
 {
        for (idx_type idx = 0; idx < nargs(); ++idx)
-               cell(idx)->acceptChanges(bparams);
+               cell(idx)->acceptChanges();
 }
 
 
-void InsetTabular::rejectChanges(BufferParams const & bparams)
+void InsetTabular::rejectChanges()
 {
        for (idx_type idx = 0; idx < nargs(); ++idx)
-               cell(idx)->rejectChanges(bparams);
+               cell(idx)->rejectChanges();
 }