summaryrefslogtreecommitdiffstats
path: root/libtdeedu
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 18:26:11 +0900
committerMichele Calgaro <[email protected]>2025-02-03 21:44:11 +0900
commit02ed3f2d62dfb2efb4f3610ca96098341518483f (patch)
tree7156180f5dd4044ad1614ddf50407c1cc3e516bf /libtdeedu
parent0b13a7b9e0f99415119eef29f05c54a01e5ec90a (diff)
downloadtdeedu-02ed3f2d62dfb2efb4f3610ca96098341518483f.tar.gz
tdeedu-02ed3f2d62dfb2efb4f3610ca96098341518483f.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'libtdeedu')
-rw-r--r--libtdeedu/extdate/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtdeedu/extdate/main.cpp b/libtdeedu/extdate/main.cpp
index 585668c6..c444d655 100644
--- a/libtdeedu/extdate/main.cpp
+++ b/libtdeedu/extdate/main.cpp
@@ -25,6 +25,6 @@ int main( int argc, char *argv[] )
TDEApplication a;
TestWidget *t = new TestWidget(0,0);
t->show();
- TQObject::connect(kapp, TQ_SIGNAL(lastWindowClosed()), kapp, TQ_SLOT(quit()));
+ TQObject::connect(tdeApp, TQ_SIGNAL(lastWindowClosed()), tdeApp, TQ_SLOT(quit()));
return a.exec();
}