summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--os2/OS2/Process/Process.pm7
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;