diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:26:28 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:26:28 -0600 |
commit | d866fe2c926adf0bacf59595a777c2f2a5879e49 (patch) | |
tree | 86ca02842dbb2e2247e6d3cc970ff6f35a640a3c /ChangeLog.CVS | |
parent | f0201c2d37cd3b94c6a720eb11d84263cd5d013b (diff) | |
download | libtqt-perl-d866fe2c926adf0bacf59595a777c2f2a5879e49.tar.gz libtqt-perl-d866fe2c926adf0bacf59595a777c2f2a5879e49.zip |
Rename additional global TQt functions
Diffstat (limited to 'ChangeLog.CVS')
-rw-r--r-- | ChangeLog.CVS | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog.CVS b/ChangeLog.CVS index 0c957b9..06990e6 100644 --- a/ChangeLog.CVS +++ b/ChangeLog.CVS @@ -170,7 +170,7 @@ * PerlTQt/: TQt.pm, TQt.xs, handlers.cpp: - implemented TQByteArray Marshaller (from/to Perl string, tied if needed) - Still needs some thought /wrt to Utf8 handling (think qCompress/tqUncompress) + Still needs some thought /wrt to Utf8 handling (think tqCompress/tqUncompress) With TQDataStream static operators and this, we get a nice object serializer :) @@ -253,7 +253,7 @@ - adding support for the new TQt::GlobalSpace pseudo-class holding all global TQt functions. Requires a recompilation of Smoke. use TQt::GlobalSpace; # exports all symbols to the caller's namespace (not recommended) - use TQt::GlobalSpace qw( bitBlt qCompress qSysInfo ); # export listed symbols only + use TQt::GlobalSpace qw( bitBlt tqCompress tqSysInfo ); # export listed symbols only - when an operator call fails, forward the call to TQt::GlobalSpace which has a lot of static operators: $aPoint = TQt::Point( 20, 20 ); $aPoint += TQt::Point( 10, 10); # this one calls TQt::Point->operator+() |