signed/unsigned problem.

git-svn-id: svn://qnap.local/TwoTerm/trunk@2006 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
This commit is contained in:
Kelvin Sherlock 2011-01-22 18:28:56 +00:00
parent 1396edfad4
commit c9aa73af1f
2 changed files with 4 additions and 4 deletions

View File

@ -750,7 +750,7 @@ void Screen::insertLine(unsigned line)
// line is relative to the textView.
// textView has been constrained.
void Screen::insertLine(TextPort *textPort, unsigned line)
void Screen::insertLine(TextPort *textPort, int line)
{
CharInfo ci;
@ -815,7 +815,7 @@ void Screen::deleteLine(unsigned line)
}
void Screen::deleteLine(TextPort *textPort, unsigned line)
void Screen::deleteLine(TextPort *textPort, int line)
{
CharInfo ci;

View File

@ -166,8 +166,8 @@ public:
void deleteLine(unsigned line);
void insertLine(unsigned line);
void insertLine(TextPort *textPort, unsigned line);
void deleteLine(TextPort *textPort, unsigned line);
void insertLine(TextPort *textPort, int line);
void deleteLine(TextPort *textPort, int line);
void beginUpdate();