mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
fix MSVC warning.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17567 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
925c17c058
commit
7c9f34d0b5
@ -1144,7 +1144,7 @@ void LyXText::changeCase(LCursor & cur, LyXText::TextCase action)
|
||||
pos++; // step behind the changing area
|
||||
}
|
||||
int erasePos = pos - changes.size();
|
||||
for (int i = 0; i < changes.size(); i++) {
|
||||
for (size_t i = 0; i < changes.size(); i++) {
|
||||
pars_[pit].insertChar(pos, changes[i],
|
||||
pars_[pit].getFontSettings(cur.buffer().params(),
|
||||
erasePos),
|
||||
|
Loading…
Reference in New Issue
Block a user