Eliminate most unneeded this-> pointers throughout.

This commit is contained in:
Christopher Faylor
2003-02-04 03:01:17 +00:00
parent ad36f7d19a
commit 335556d58b
14 changed files with 37 additions and 33 deletions

View File

@ -1677,7 +1677,7 @@ fhandler_console::init (HANDLE f, DWORD a, mode_t bin)
if (f != INVALID_HANDLE_VALUE)
CloseHandle (f); /* Reopened by open */
this->tcsetattr (0, &tc->ti);
tcsetattr (0, &tc->ti);
}
int
@ -1689,7 +1689,7 @@ fhandler_console::igncr_enabled (void)
void
fhandler_console::set_close_on_exec (int val)
{
this->fhandler_base::set_close_on_exec (val);
fhandler_base::set_close_on_exec (val);
set_inheritance (output_handle, val);
}