X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fparagraph_pimpl.h;h=efb347c2494dfbdc341c305c42a8c9b325ec72cb;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=aacf9bb3b52c868a23ace0fbec940bf6a2f8c5d4;hpb=0aaa8c5bcc03167509a9b25124aa839e33ff3ca0;p=lyx.git diff --git a/src/paragraph_pimpl.h b/src/paragraph_pimpl.h index aacf9bb3b5..efb347c249 100644 --- a/src/paragraph_pimpl.h +++ b/src/paragraph_pimpl.h @@ -35,8 +35,6 @@ public: Pimpl(Paragraph * owner); /// "Copy constructor" Pimpl(Pimpl const &, Paragraph * owner); - /// - void setContentsFromPar(Paragraph const & par); // // Change tracking @@ -49,10 +47,10 @@ public: void setChange(Change const & change); /// set change at given pos void setChange(pos_type pos, Change const & change); - /// accept change - void acceptChange(pos_type start, pos_type end); - /// reject change - void rejectChange(pos_type start, pos_type end); + /// accept changes within the given range + void acceptChanges(pos_type start, pos_type end); + /// reject changes within the given range + void rejectChanges(pos_type start, pos_type end); /// value_type getChar(pos_type pos) const;