From 04913ce7a46fd027856e83a96205fdc388742a19 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 May 2024 14:04:45 +0900 Subject: Rename ntqobject*.h and qobject*.cpp to tqobject* Signed-off-by: Michele Calgaro --- doc/html/qfd-example.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/qfd-example.html') diff --git a/doc/html/qfd-example.html b/doc/html/qfd-example.html index f04dab405..1543b538e 100644 --- a/doc/html/qfd-example.html +++ b/doc/html/qfd-example.html @@ -232,14 +232,14 @@ void FontRowTable::chooseFont() { FontRowTable* table = new FontRowTable(this); TQToolBar* controls = new TQToolBar(this); - (void) new TQLabel(tr("Row:"), controls); + (void) new TQLabel(tr("Row:"), controls); TQSpinBox *row = new TQSpinBox(0,255,1,controls); controls->addSeparator(); - TQPushButton *fontbutton = new TQPushButton(tr("Font..."), controls); + TQPushButton *fontbutton = new TQPushButton(tr("Font..."), controls); - 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&)), + 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