From fb401a891f1b426e9419c0cb16403df407138611 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 --- examples/qfd/fontdisplayer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/qfd/fontdisplayer.cpp') diff --git a/examples/qfd/fontdisplayer.cpp b/examples/qfd/fontdisplayer.cpp index 9fcd73b38..a580e879b 100644 --- a/examples/qfd/fontdisplayer.cpp +++ b/examples/qfd/fontdisplayer.cpp @@ -146,10 +146,10 @@ FontDisplayer::FontDisplayer( TQWidget* parent, const char* name ) : controls->addSeparator(); TQPushButton *fontbutton = new TQPushButton(tr("Font..."), controls); - connect(row,SIGNAL(valueChanged(int)),table,SLOT(setRow(int))); - connect(fontbutton, SIGNAL(clicked()), table, SLOT(chooseFont())); - connect(table,SIGNAL(fontInformation(const TQString&)), - statusBar(),SLOT(message(const TQString&))); + connect(row,TQ_SIGNAL(valueChanged(int)),table,TQ_SLOT(setRow(int))); + connect(fontbutton, TQ_SIGNAL(clicked()), table, TQ_SLOT(chooseFont())); + connect(table,TQ_SIGNAL(fontInformation(const TQString&)), + statusBar(),TQ_SLOT(message(const TQString&))); table->setRow(0); setCentralWidget(table); } -- cgit v1.2.1