diff options
Diffstat (limited to 'doc/en/PerlQt.pod')
-rw-r--r-- | doc/en/PerlQt.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/en/PerlQt.pod b/doc/en/PerlQt.pod index 5593aa9..62ac845 100644 --- a/doc/en/PerlQt.pod +++ b/doc/en/PerlQt.pod @@ -962,16 +962,16 @@ C<TQt::GlobalSpace>. Hence, you shall access this namespace either with a fully qualified call: - TQt::GlobalSpace::qUncompress( $buffer ) + TQt::GlobalSpace::tqUncompress( $buffer ) Or directly, after importation in the current namespace: use TQt::GlobalSpace; - qUncompress( $buffer ) + tqUncompress( $buffer ) Of course, you may selectively import a few functions: - use TQt::GlobalSpace qw( qUncompress bitBlt ) + use TQt::GlobalSpace qw( tqUncompress bitBlt ) B<Note:> GlobalSpace has also operators, such has the one performing an addition on two TQt::Point(). Those operators are called automatically. |