From ecca365daf06c711cf30f93f4c773dabf5642790 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro (cherry picked from commit fb401a891f1b426e9419c0cb16403df407138611) --- qmake/examples/precompile/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qmake/examples') diff --git a/qmake/examples/precompile/main.cpp b/qmake/examples/precompile/main.cpp index 80fc704d4..3bdad9540 100644 --- a/qmake/examples/precompile/main.cpp +++ b/qmake/examples/precompile/main.cpp @@ -11,7 +11,7 @@ int main(int argc, char **argv) MyObject obj; MyDialog dia; app.setMainWidget( &dia ); - dia.connect( dia.aButton, SIGNAL(clicked()), SLOT(close()) ); + dia.connect( dia.aButton, TQ_SIGNAL(clicked()), TQ_SLOT(close()) ); dia.show(); return app.exec(); -- cgit v1.2.1