From 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 20 Jul 2024 20:15:52 +0900 Subject: Rename graphics class nt* related files to equivalent tq* (part 2) Signed-off-by: Michele Calgaro --- doc/html/designer-manual-3.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/designer-manual-3.html') diff --git a/doc/html/designer-manual-3.html b/doc/html/designer-manual-3.html index 7234bf50c..257d954f4 100644 --- a/doc/html/designer-manual-3.html +++ b/doc/html/designer-manual-3.html @@ -381,12 +381,12 @@ body { background: #ffffff; color: black; } colorTable->setNumRows( m_colors.count() ); if ( ! m_colors.isEmpty() ) { - TQPixmap pixmap( 22, 22 ); + TQPixmap pixmap( 22, 22 ); int row = 0; TQMap<TQString,TQColor>::ConstIterator it; for ( it = m_colors.constBegin(); it != m_colors.constEnd(); ++it ) { TQColor color = it.data(); - pixmap.fill( color ); + pixmap.fill( color ); colorTable->setText( row, COL_NAME, it.key() ); colorTable->setPixmap( row, COL_NAME, pixmap ); colorTable->setText( row, COL_HEX, color.name().upper() ); @@ -446,8 +446,8 @@ body { background: #ffffff; color: black; }

colorSwatch()

    TQPixmap MainForm::colorSwatch( const TQColor color )
     {
-        TQPixmap pixmap( 80, 80 );
-        pixmap.fill( white );
+        TQPixmap pixmap( 80, 80 );
+        pixmap.fill( white );
         TQPainter painter;
         painter.begin( &pixmap );
         painter.setPen( NoPen );
-- 
cgit v1.2.1