1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/mail/mmr/files/patch-terminal.cpp
Christian Weisgerber 940d110922 C++ fixes for GCC3.
PR:		44460
Submitted by:	Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
2002-10-26 00:27:50 +00:00

21 lines
454 B
C++

--- terminal.cpp.orig Fri Oct 25 13:51:29 2002
+++ terminal.cpp Fri Oct 25 13:51:50 2002
@@ -11,7 +11,7 @@
int Terminal::wasraw = 0;
int Terminal::maxwait = 0;
-Terminal:: Terminal(int makeraw = 1)
+Terminal:: Terminal(int makeraw)
{
/* Initialize curses, if necessary */
if ( refcount == 0 ) {
@@ -133,7 +133,7 @@
/* Input routines */
int
-Terminal:: waitchar(WINDOW *the_win = NULL)
+Terminal:: waitchar(WINDOW *the_win)
{
int ch, t;