mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
fix MSVC warning.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19552 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
55aafd2403
commit
7ef45b8610
@ -46,7 +46,7 @@ void TexRow::newline()
|
||||
|
||||
bool TexRow::getIdFromRow(int row, int & id, int & pos) const
|
||||
{
|
||||
if (row <= 0 || row > rowlist.size()) {
|
||||
if (row <= 0 || row > int(rowlist.size())) {
|
||||
id = -1;
|
||||
pos = 0;
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user