From 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 24 Jul 2024 19:37:05 +0900 Subject: Rename text class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/showimg-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/showimg-example.html') diff --git a/doc/html/showimg-example.html b/doc/html/showimg-example.html index 167907a36..ef2124b97 100644 --- a/doc/html/showimg-example.html +++ b/doc/html/showimg-example.html @@ -92,7 +92,7 @@ private: TQPopupMenu *options; TQWidget *helpmsg; - TQLabel *status; + TQLabel *status; int si, sp, ac, co, mo, fd, bd, // Menu item ids td, ta, ba, fa, au, ad, dd, ss, cc, t1, t8, t32; @@ -151,7 +151,7 @@ private slots: #include <tqfiledialog.h> #include <ntqmessagebox.h> #include <tqpopupmenu.h> -#include <ntqlabel.h> +#include <tqlabel.h> #include <tqpainter.h> #include <ntqapplication.h> #include <tqclipboard.h> @@ -244,7 +244,7 @@ private slots: connect( options, TQ_SIGNAL(activated(int)), this, TQ_SLOT(doOption(int)) ); - status = new TQLabel(this); + status = new TQLabel(this); status->setFrameStyle( TQFrame::WinPanel | TQFrame::Sunken ); status->setFixedHeight( fontMetrics().height() + 4 ); @@ -364,9 +364,9 @@ void ImageViewer::updateStatus() { if ( pm.size() == TQSize( 0, 0 ) ) { if ( !filename.isEmpty() ) - status->setText("Could not load image"); + status->setText("Could not load image"); else - status->setText("No image - select Open from File menu."); + status->setText("No image - select Open from File menu."); } else { TQString message, moremsg; message.sprintf("%dx%d", image.width(), image.height()); @@ -416,7 +416,7 @@ void ImageViewer::updateStatus() } message += moremsg; } - status->setText(message); + status->setText(message); } } -- cgit v1.2.3