mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* src/text.C: turn another C-style cast into a static cast
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17274 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2946fd24b8
commit
67528d1b3b
@ -980,7 +980,7 @@ void LyXText::acceptChanges(BufferParams const & bparams)
|
||||
|
||||
void LyXText::rejectChanges(BufferParams const & bparams)
|
||||
{
|
||||
pit_type pars_size = (pit_type) pars_.size();
|
||||
pit_type pars_size = static_cast<pit_type>(pars_.size());
|
||||
|
||||
// first, reject changes within each individual paragraph
|
||||
// (do not consider end-of-par)
|
||||
|
Loading…
Reference in New Issue
Block a user