Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-02-04 06:01:17 +0300
committerChristopher Faylor <me@cgf.cx>2003-02-04 06:01:17 +0300
commit335556d58b52396f1f133033856bf6be397a29b8 (patch)
treeecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/fhandler_tty.cc
parentad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff)
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r--winsup/cygwin/fhandler_tty.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc
index af26108db..1824d37b5 100644
--- a/winsup/cygwin/fhandler_tty.cc
+++ b/winsup/cygwin/fhandler_tty.cc
@@ -1066,7 +1066,7 @@ fhandler_pty_master::close ()
while (accept_input () > 0)
continue;
#endif
- this->fhandler_tty_common::close ();
+ fhandler_tty_common::close ();
if (!get_ttyp ()->master_alive ())
{
@@ -1176,7 +1176,7 @@ void
fhandler_tty_common::set_close_on_exec (int val)
{
#ifndef DEBUGGING
- this->fhandler_base::set_close_on_exec (val);
+ fhandler_base::set_close_on_exec (val);
#else
/* FIXME: This is a duplication from fhandler_base::set_close_on_exec.
It is here because we need to specify the "from_pty" stuff here or
@@ -1201,7 +1201,7 @@ fhandler_tty_common::set_close_on_exec (int val)
void
fhandler_tty_common::fixup_after_fork (HANDLE parent)
{
- this->fhandler_termios::fixup_after_fork (parent);
+ fhandler_termios::fixup_after_fork (parent);
if (output_done_event)
fork_fixup (parent, output_done_event, "output_done_event");
if (ioctl_request_event)
@@ -1220,7 +1220,7 @@ fhandler_tty_common::fixup_after_fork (HANDLE parent)
void
fhandler_pty_master::set_close_on_exec (int val)
{
- this->fhandler_tty_common::set_close_on_exec (val);
+ fhandler_tty_common::set_close_on_exec (val);
/* FIXME: There is a console handle leak here. */
if (get_ttyp ()->master_pid == GetCurrentProcessId ())
@@ -1235,7 +1235,7 @@ fhandler_pty_master::set_close_on_exec (int val)
void
fhandler_tty_master::fixup_after_fork (HANDLE child)
{
- this->fhandler_pty_master::fixup_after_fork (child);
+ fhandler_pty_master::fixup_after_fork (child);
console->fixup_after_fork (child);
}