]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTabular.cpp
revert r30531, which causes a crash when copying an inset.
[lyx.git] / src / insets / InsetTabular.cpp
index 8ebfeb8110be19b35bf231ed363890daf9f7fcec..e3611d638b1c2772d1a43e84f640f6fefc1ab6f7 100644 (file)
@@ -5152,17 +5152,17 @@ void InsetTabular::setChange(Change const & change)
 }
 
 
-void InsetTabular::acceptChanges()
+void InsetTabular::acceptChanges(BufferParams const & bparams)
 {
        for (idx_type idx = 0; idx < nargs(); ++idx)
-               cell(idx)->acceptChanges();
+               cell(idx)->acceptChanges(bparams);
 }
 
 
-void InsetTabular::rejectChanges()
+void InsetTabular::rejectChanges(BufferParams const & bparams)
 {
        for (idx_type idx = 0; idx < nargs(); ++idx)
-               cell(idx)->rejectChanges();
+               cell(idx)->rejectChanges(bparams);
 }