diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:30:32 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:22:52 +0900 |
| commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
| tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /lib/kross/test/testobject.cpp | |
| parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
| download | koffice-e1b37ac1.tar.gz koffice-e1b37ac1.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'lib/kross/test/testobject.cpp')
| -rw-r--r-- | lib/kross/test/testobject.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/kross/test/testobject.cpp b/lib/kross/test/testobject.cpp index 884e7e370..30385edd1 100644 --- a/lib/kross/test/testobject.cpp +++ b/lib/kross/test/testobject.cpp @@ -29,17 +29,17 @@ TestObject::TestObject() TestObject::TestObject(TQObject* parent, Kross::Api::ScriptContainer::Ptr scriptcontainer) : TQObject(parent, "TestObject") { - connect(this, TQT_SIGNAL(testSignal()), this, TQT_SLOT(testSignalSlot())); - connect(this, TQT_SIGNAL(stdoutSignal(const TQString&)), this, TQT_SLOT(stdoutSlot(const TQString&))); - connect(this, TQT_SIGNAL(stderrSignal(const TQString&)), this, TQT_SLOT(stderrSlot(const TQString&))); + connect(this, TQ_SIGNAL(testSignal()), this, TQ_SLOT(testSignalSlot())); + connect(this, TQ_SIGNAL(stdoutSignal(const TQString&)), this, TQ_SLOT(stdoutSlot(const TQString&))); + connect(this, TQ_SIGNAL(stderrSignal(const TQString&)), this, TQ_SLOT(stderrSlot(const TQString&))); scriptcontainer->addTQObject(this); -//scriptcontainer->addSignal("stdout", this, TQT_SIGNAL(stdoutSignal(const TQString&))); -//scriptcontainer->addSlot("stderr", this, TQT_SLOT(stderrSlot(const TQString&))); +//scriptcontainer->addSignal("stdout", this, TQ_SIGNAL(stdoutSignal(const TQString&))); +//scriptcontainer->addSlot("stderr", this, TQ_SLOT(stderrSlot(const TQString&))); - //scriptcontainer->addSignal("myTestSignal", this, TQT_SIGNAL(testSignal())); - //scriptcontainer->addSlot("myTestSlot", this, TQT_SLOT(testSlot())); + //scriptcontainer->addSignal("myTestSignal", this, TQ_SIGNAL(testSignal())); + //scriptcontainer->addSlot("myTestSlot", this, TQ_SLOT(testSlot())); } TestObject::~TestObject() |
