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

@ -128,9 +128,9 @@ void
fhandler_windows::set_close_on_exec (int val)
{
if (get_handle ())
this->fhandler_base::set_close_on_exec (val);
fhandler_base::set_close_on_exec (val);
else
this->fhandler_base::set_close_on_exec_flag (val);
fhandler_base::set_close_on_exec_flag (val);
void *h = hWnd_;
if (h)
set_inheritance (h, val);
@ -140,7 +140,7 @@ void
fhandler_windows::fixup_after_fork (HANDLE parent)
{
if (get_handle ())
this->fhandler_base::fixup_after_fork (parent);
fhandler_base::fixup_after_fork (parent);
void *h = hWnd_;
if (h)
fork_fixup (parent, h, "hWnd_");