Skip to content

Commit

Permalink
Removed a warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
BalazsJako committed Dec 8, 2018
1 parent 894a4a5 commit 4259b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TextEditor.cpp
Expand Up @@ -898,7 +898,7 @@ void TextEditor::EnterCharacter(Char aChar, bool aShift)
if (end.mColumn == 0 && end.mLine > 0)
{
--end.mLine;
end.mColumn = mLines[end.mLine].size();
end.mColumn = (int) mLines[end.mLine].size();
}

u.mRemovedStart = start;
Expand Down

0 comments on commit 4259b64

Please sign in to comment.