diff options
author | Christopher Faylor <me@cgf.cx> | 2003-02-04 03:01:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-02-04 03:01:17 +0000 |
commit | 335556d58b52396f1f133033856bf6be397a29b8 (patch) | |
tree | ecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/fhandler_tty.cc | |
parent | ad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff) | |
download | cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.gz cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.bz2 cygnal-335556d58b52396f1f133033856bf6be397a29b8.zip |
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r-- | winsup/cygwin/fhandler_tty.cc | 10 |
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); } |