diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2001-07-02 23:34:06 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-03 11:33:27 +0000 |
commit | bd60b2b92942fb3f95fd620ac382c2af3b6afe97 (patch) | |
tree | c70e4eee6be50aac48d3ca4707f2711860ed8845 /os2 | |
parent | 386d104613f504f44a78019d1a0a477192078c8b (diff) | |
download | perl-bd60b2b92942fb3f95fd620ac382c2af3b6afe97.tar.gz |
Re: [PATCH 5.6.1] OS/2 improvements
Message-ID: <20010703033406.A16776@math.ohio-state.edu>
p4raw-id: //depot/perl@11119
Diffstat (limited to 'os2')
-rw-r--r-- | os2/OS2/Process/Process.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/os2/OS2/Process/Process.pm b/os2/OS2/Process/Process.pm index 6ce93c049a..30154302d3 100644 --- a/os2/OS2/Process/Process.pm +++ b/os2/OS2/Process/Process.pm @@ -94,6 +94,9 @@ BEGIN { WindowFromId WindowFromPoint EnumDlgItem + + get_title + set_title ); sub AUTOLOAD { @@ -225,6 +228,10 @@ sub ChildWindows ($) { @kids; } +# backward compatibility +*set_title = \&Title_set; +*get_title = \&Title; + # Autoload methods go after __END__, and are processed by the autosplit program. 1; |