diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-13 23:01:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-15 16:22:14 +0900 |
commit | b71912fbcb90d5504aad9f17530c94169a661fed (patch) | |
tree | e9039e4a956fb8af5ba2878db5320236eb0f93b1 /tdeio/tests/kruntest.cpp | |
parent | 8ee06ec529e375693eaefa6fb68dc496d36fd367 (diff) | |
download | tdelibs-rename/kapp-tdeapp.tar.gz tdelibs-rename/kapp-tdeapp.zip |
Rename TDEApplication::kApplication() to TDEApplication::tdeApplication() and kapp to tdeApp.rename/kapp-tdeapp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeio/tests/kruntest.cpp')
-rw-r--r-- | tdeio/tests/kruntest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeio/tests/kruntest.cpp b/tdeio/tests/kruntest.cpp index c10a36898..8f4b6d075 100644 --- a/tdeio/tests/kruntest.cpp +++ b/tdeio/tests/kruntest.cpp @@ -56,7 +56,7 @@ Receiver::Receiver() start = new TQPushButton( "Launch KRuns", this ); stop = new TQPushButton( "Stop those KRuns", this ); stop->setEnabled(false); - TQObject::connect( h, TQ_SIGNAL(clicked()), kapp, TQ_SLOT(quit()) ); + TQObject::connect( h, TQ_SIGNAL(clicked()), tdeApp, TQ_SLOT(quit()) ); TQObject::connect( start, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotStart()) ); TQObject::connect( stop, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotStop()) ); |