summaryrefslogtreecommitdiffstats
path: root/examples/qfd/fontdisplayer.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-27 19:25:43 +0900
committerMichele Calgaro <[email protected]>2023-12-27 19:25:43 +0900
commitfb401a891f1b426e9419c0cb16403df407138611 (patch)
tree045b51949b3140039e37d898d8b0513016a86bea /examples/qfd/fontdisplayer.cpp
parenta9d178f1000475ba1727ffe123a2c54585488c01 (diff)
downloadtqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz
tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'examples/qfd/fontdisplayer.cpp')
-rw-r--r--examples/qfd/fontdisplayer.cpp8
1 files changed, 4 insertions, 4 deletions
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);
}