]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTabular.cpp
remove BufferParams parameter from Inset::accept/rejectChanges; adapt rest of code...
[lyx.git] / src / insets / InsetTabular.cpp
index d1d0287f67c7fa3d78031c1d66bf66753997d1c5..05b8f199a2b5ea35824506c77e3db707df27d6e8 100644 (file)
@@ -5157,17 +5157,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();
 }