Fix two typos (, instead of ;)
This commit is contained in:
parent
8628157026
commit
b6e468796a
|
@ -1042,7 +1042,7 @@ PyCursesWindow_NoOutRefresh(self,arg)
|
||||||
Py_BEGIN_ALLOW_THREADS
|
Py_BEGIN_ALLOW_THREADS
|
||||||
rtn = pnoutrefresh(self->win,
|
rtn = pnoutrefresh(self->win,
|
||||||
pminrow, pmincol, sminrow,
|
pminrow, pmincol, sminrow,
|
||||||
smincol, smaxrow, smaxcol),
|
smincol, smaxrow, smaxcol);
|
||||||
Py_END_ALLOW_THREADS
|
Py_END_ALLOW_THREADS
|
||||||
return PyCursesCheckERR(rtn, "pnoutrefresh");
|
return PyCursesCheckERR(rtn, "pnoutrefresh");
|
||||||
default:
|
default:
|
||||||
|
@ -1111,8 +1111,7 @@ PyCursesWindow_Refresh(self,arg)
|
||||||
Py_BEGIN_ALLOW_THREADS
|
Py_BEGIN_ALLOW_THREADS
|
||||||
rtn = prefresh(self->win,
|
rtn = prefresh(self->win,
|
||||||
pminrow, pmincol, sminrow,
|
pminrow, pmincol, sminrow,
|
||||||
smincol, smaxrow, smaxcol),
|
smincol, smaxrow, smaxcol);
|
||||||
|
|
||||||
Py_END_ALLOW_THREADS
|
Py_END_ALLOW_THREADS
|
||||||
return PyCursesCheckERR(rtn, "prefresh");
|
return PyCursesCheckERR(rtn, "prefresh");
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue