summaryrefslogtreecommitdiffstats
path: root/examples/application/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/application/main.cpp')
-rw-r--r--examples/application/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/application/main.cpp b/examples/application/main.cpp
index f6a4ae3fb..357d448e4 100644
--- a/examples/application/main.cpp
+++ b/examples/application/main.cpp
@@ -15,6 +15,6 @@ int main( int argc, char ** argv ) {
ApplicationWindow *mw = new ApplicationWindow();
mw->setCaption( "TQt Example - Application" );
mw->show();
- a.connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(tquit()) );
+ a.connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()) );
return a.exec();
}