summaryrefslogtreecommitdiffstats
path: root/ChangeLog.CVS
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog.CVS')
-rw-r--r--ChangeLog.CVS4
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+()