diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:13:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:13:36 -0600 |
commit | 8767713ab09296bf7c13c87e06c8d235da42869b (patch) | |
tree | b96d3052297d197824a7f3b000d9f1294e5a1c29 /doc/en/PerlQt.pod | |
parent | 7aa035c4f588c04c750241d2ccbb10f3410b6f95 (diff) | |
download | libtqt-perl-8767713ab09296bf7c13c87e06c8d235da42869b.tar.gz libtqt-perl-8767713ab09296bf7c13c87e06c8d235da42869b.zip |
Update various qt function definitions and static methods for tqt3
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. |