diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 11:29:06 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 20:32:49 +0900 |
| commit | 1eb017313b2ebc441dfc81e73a5d6573d03ea08d (patch) | |
| tree | 8d37ac85ad8a529697fc81479852a039de534b8e /korundum/rubylib/examples/dcop | |
| parent | 673e65a4a15e713643f4bb804f7af6dfdaa0d6d6 (diff) | |
| download | tdebindings-1eb01731.tar.gz tdebindings-1eb01731.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit faf33629bb6562a6f43f930afafe4b22e9cdb60b)
Diffstat (limited to 'korundum/rubylib/examples/dcop')
| -rwxr-xr-x | korundum/rubylib/examples/dcop/dcopcall.rb | 2 | ||||
| -rwxr-xr-x | korundum/rubylib/examples/dcop/dcoppredicate.rb | 2 | ||||
| -rwxr-xr-x | korundum/rubylib/examples/dcop/dcopsend.rb | 2 | ||||
| -rwxr-xr-x | korundum/rubylib/examples/dcop/dcopsignal.rb | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/korundum/rubylib/examples/dcop/dcopcall.rb b/korundum/rubylib/examples/dcop/dcopcall.rb index cba7ff09..58add5ae 100755 --- a/korundum/rubylib/examples/dcop/dcopcall.rb +++ b/korundum/rubylib/examples/dcop/dcopcall.rb @@ -6,7 +6,7 @@ include KDE class SenderWidget < PushButton def initialize(parent, name) super - connect(self, SIGNAL('clicked()'), self, SLOT('doit()')) + connect(self, TQ_SIGNAL('clicked()'), self, TQ_SLOT('doit()')) end slots 'doit()' diff --git a/korundum/rubylib/examples/dcop/dcoppredicate.rb b/korundum/rubylib/examples/dcop/dcoppredicate.rb index 82a9c8b4..c4cb2c41 100755 --- a/korundum/rubylib/examples/dcop/dcoppredicate.rb +++ b/korundum/rubylib/examples/dcop/dcoppredicate.rb @@ -6,7 +6,7 @@ include KDE class SenderWidget < PushButton def initialize(parent, name) super - connect(self, SIGNAL('clicked()'), self, SLOT('doit()')) + connect(self, TQ_SIGNAL('clicked()'), self, TQ_SLOT('doit()')) end slots 'doit()' diff --git a/korundum/rubylib/examples/dcop/dcopsend.rb b/korundum/rubylib/examples/dcop/dcopsend.rb index e8a69e00..66530797 100755 --- a/korundum/rubylib/examples/dcop/dcopsend.rb +++ b/korundum/rubylib/examples/dcop/dcopsend.rb @@ -5,7 +5,7 @@ require 'Korundum' class SenderWidget < KDE::PushButton def initialize(parent, name) super - TQt::Object::connect(self, SIGNAL('clicked()'), self, SLOT('doit()')) + TQt::Object::connect(self, TQ_SIGNAL('clicked()'), self, TQ_SLOT('doit()')) end slots 'doit()' diff --git a/korundum/rubylib/examples/dcop/dcopsignal.rb b/korundum/rubylib/examples/dcop/dcopsignal.rb index 4e83d7f4..4d61e917 100755 --- a/korundum/rubylib/examples/dcop/dcopsignal.rb +++ b/korundum/rubylib/examples/dcop/dcopsignal.rb @@ -7,7 +7,7 @@ class SenderWidget < KDE::PushButton def initialize(parent, name) super - TQt::Object::connect(self, SIGNAL('clicked()'), self, SLOT('doit()')) + TQt::Object::connect(self, TQ_SIGNAL('clicked()'), self, TQ_SLOT('doit()')) end slots 'doit()' |
