diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2009-10-05 23:42:38 -0400 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2009-10-05 23:57:58 -0400 |
commit | 345e23944176348809d2be92e05ba6856a5c0ebc (patch) | |
tree | 6c18f1f5b63994d65f86ab00bc8f7ced256432c4 /os2 | |
parent | 69f6a9a1e215d426b05a8e22b39666a532bfffc3 (diff) | |
download | perl-345e23944176348809d2be92e05ba6856a5c0ebc.tar.gz |
A number of pod fixes found by podcheck.t
Diffstat (limited to 'os2')
-rw-r--r-- | os2/OS2/OS2-Process/Process.pm | 30 | ||||
-rw-r--r-- | os2/OS2/OS2-REXX/DLL/DLL.pm | 6 |
2 files changed, 18 insertions, 18 deletions
diff --git a/os2/OS2/OS2-Process/Process.pm b/os2/OS2/OS2-Process/Process.pm index 70583617b1..00b11aab64 100644 --- a/os2/OS2/OS2-Process/Process.pm +++ b/os2/OS2/OS2-Process/Process.pm @@ -1070,44 +1070,44 @@ returns a list of the following data: =over -=item +=item * Title of the process (in the C<Ctrl-Esc> list); -=item +=item * window handle of switch entry of the process (in the C<Ctrl-Esc> list); -=item +=item * window handle of the icon of the process; -=item +=item * process handle of the owner of the entry in C<Ctrl-Esc> list; -=item +=item * process id of the owner of the entry in C<Ctrl-Esc> list; -=item +=item * session id of the owner of the entry in C<Ctrl-Esc> list; -=item +=item * whether visible in C<Ctrl-Esc> list; -=item +=item * whether item cannot be switched to (note that it is not actually grayed in the C<Ctrl-Esc> list)); -=item +=item * whether participates in jump sequence; -=item +=item * program type. Possible values are: @@ -1127,7 +1127,7 @@ is a windowed WIN-OS/2 program, it runs in a PROG_WINDOWEDVDM session. Likewise, if it's a full-screen WIN-OS/2 program, it runs in a PROG_VDM session. -=item +=item * switch-entry handle. @@ -1225,7 +1225,7 @@ Some of these API's require sending a message to the specified window. In such a case the process needs to be a PM process, or to be morphed to a PM process via OS2::MorphPM(). -For a temporary morphing to PM use L<OS2::localMorphPM class>. +For a temporary morphing to PM use the L<OS2::localMorphPM> class. Keep in mind that PM windows are engaged in 2 "orthogonal" window trees, as well as in the z-order list. @@ -1749,7 +1749,7 @@ specifies whether region scan should be interruptable by signals. Use class C<OS2::localClipbrd> to ensure that clipboard is closed even if the code in the block made a non-local exit. -See L<"OS2::localMorphPM and OS2::localClipbrd classes">. +See the L<OS2::localMorphPM> and L<OS2::localClipbrd> classes. =head2 Control of the PM atom tables @@ -2083,7 +2083,7 @@ For direct access, see also the L<"EXPORTS"> section; the latter way may also provide some performance advantages, since the value of the constant is cached. -=head1 OS2::localMorphPM, OS2::localFlashWindow, and OS2::localClipbrd classes +=head1 L<OS2::localMorphPM>, OS2::localFlashWindow, and OS2::localClipbrd classes The class C<OS2::localMorphPM> morphs the process to PM for the duration of the given scope. @@ -2106,7 +2106,7 @@ morph the application into PM: } C<OS2::localFlashWindow> behaves similarly; see -L<"FlashWindow($hwnd,$doFlash)">. +L<FlashWindow($hwnd, $doFlash)>. =head1 EXAMPLES diff --git a/os2/OS2/OS2-REXX/DLL/DLL.pm b/os2/OS2/OS2-REXX/DLL/DLL.pm index 2a2486e863..92eca22bda 100644 --- a/os2/OS2/OS2-REXX/DLL/DLL.pm +++ b/os2/OS2/OS2-REXX/DLL/DLL.pm @@ -152,7 +152,7 @@ See documentation of L<OS2::REXX> module if you need the variable pool. =head1 DESCRIPTION -=head2 Create a DLL handle +=head2 L<Create a DLL handle> $dll = OS2::DLL->module( NAME [, WHERE] ); @@ -166,7 +166,7 @@ The DLL is not unloaded when the return value is destroyed. $dll = OS2::DLL->new( NAME [, WHERE] ); -Same as L<C<module>|Create a DLL handle>, but in addition to WHERE, looks +Same as C<module>|L<Create a DLL handle>, but in addition to WHERE, looks in environment paths PERL5REXX, PERLREXX, PATH (provided for backward compatibility). @@ -174,7 +174,7 @@ compatibility). $dll = load OS2::DLL NAME [, WHERE]; -Same as L<C<new>|Create a DLL handle (looking in some strange locations)>, +Same as C<new>|L<Create a DLL handle (looking in some strange locations)>, but returns DLL object reference, or undef on failure (in this case one can get the reason via C<DynaLoader::dl_error()>) (provided for backward compatibility). |