summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/addressbook/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/designer/examples/addressbook/main.cpp')
-rw-r--r--tools/designer/examples/addressbook/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/designer/examples/addressbook/main.cpp b/tools/designer/examples/addressbook/main.cpp
index 4b80e6d3..0359e37c 100644
--- a/tools/designer/examples/addressbook/main.cpp
+++ b/tools/designer/examples/addressbook/main.cpp
@@ -6,6 +6,6 @@ int main( int argc, char ** argv )
TQApplication a( argc, argv );
AddressBook *w = new AddressBook;
w->show();
- a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
+ a.connect( &a, TQ_SIGNAL( lastWindowClosed() ), &a, TQ_SLOT( quit() ) );
return a.exec();
}