diff options
author | Timothy Pearson <[email protected]> | 2012-02-14 21:13:36 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-14 21:13:36 -0600 |
commit | 8767713ab09296bf7c13c87e06c8d235da42869b (patch) | |
tree | b96d3052297d197824a7f3b000d9f1294e5a1c29 /doc/en | |
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')
-rw-r--r-- | doc/en/PerlQt.pod | 6 | ||||
-rw-r--r-- | doc/en/index.html | 6 |
2 files changed, 6 insertions, 6 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. diff --git a/doc/en/index.html b/doc/en/index.html index 4386c5d..c9fe274 100644 --- a/doc/en/index.html +++ b/doc/en/index.html @@ -903,7 +903,7 @@ TQt has also some utilitarian functions such as bitBlt, qCompress, etc. </dd> <dd> <pre> - TQt::GlobalSpace::qUncompress( $buffer )</pre> + TQt::GlobalSpace::tqUncompress( $buffer )</pre> </dd> <dd> <p>Or directly, after importation in the current namespace:</p> @@ -911,14 +911,14 @@ TQt has also some utilitarian functions such as bitBlt, qCompress, etc. <dd> <pre> use TQt::GlobalSpace; - qUncompress( $buffer )</pre> + tqUncompress( $buffer )</pre> </dd> <dd> <p>Of course, you may selectively import a few functions:</p> </dd> <dd> <pre> - use TQt::GlobalSpace qw( qUncompress bitBlt )</pre> + use TQt::GlobalSpace qw( tqUncompress bitBlt )</pre> </dd> <dd> <p><strong>Note:</strong> GlobalSpace has also operators, such has the one performing an addition on two |