diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /dcopperl/DCOP.pm | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'dcopperl/DCOP.pm')
-rw-r--r-- | dcopperl/DCOP.pm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dcopperl/DCOP.pm b/dcopperl/DCOP.pm index ff463362..c71e1f91 100644 --- a/dcopperl/DCOP.pm +++ b/dcopperl/DCOP.pm @@ -233,7 +233,7 @@ sub remoteFunctions($app, $object) returns a reference to an array with the names of the functions the specified interface supports. The functions are returned as their signatures with parameter names and return type like - QCStringList functions() + TQCStringList functions() sub normalizeSignature($signature) @@ -254,31 +254,31 @@ return values: =item * int mapped to scalar -=item * QCString +=item * TQCString mapped to scalar -=item * QString (no Unicode support yet, just latin 1) +=item * TQString (no Unicode support yet, just latin 1) mapped to scalar -=item * QCStringList +=item * TQCStringList mapped to a reference to an array of scalars. -=item * QStringList +=item * TQStringList mapped to a reference to an array of scalars. -=item * QPoint (untested) +=item * TQPoint (untested) mapped to a reference to a two elemtent array [$x, $y] named value support via hash planned. -=item * QSize (untested) +=item * TQSize (untested) mapped to a reference to a two elemtent array [$width, $height] named value support via hash planned. -=item * QRect (untested) +=item * TQRect (untested) mapped to a reference to a four elemtent array [$left, $top, $width, $height] named value support via hash planned (including alternative right and bottom / width height) -=item * KURL (only QString url() now) +=item * KURL (only TQString url() now) mapped to scalar =item * DCOPRef (partially) |