summaryrefslogtreecommitdiffstats
path: root/src/kernel/qtimer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qtimer.cpp')
-rw-r--r--src/kernel/qtimer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/qtimer.cpp b/src/kernel/qtimer.cpp
index f6a02ee9..39ace415 100644
--- a/src/kernel/qtimer.cpp
+++ b/src/kernel/qtimer.cpp
@@ -308,7 +308,7 @@ bool TQSingleShotTimer::event( TQEvent * )
int main( int argc, char **argv )
{
TQApplication a( argc, argv );
- TQTimer::singleShot( 10*60*1000, &a, SLOT(tquit()) );
+ TQTimer::singleShot( 10*60*1000, &a, SLOT(quit()) );
... // create and show your widgets
return a.exec();
}