mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-01-22 23:30:23 +00:00
signed/unsigned problem.
git-svn-id: svn://qnap.local/TwoTerm/trunk@2006 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
This commit is contained in:
parent
1396edfad4
commit
c9aa73af1f
@ -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;
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user