diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-20 20:15:52 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-21 23:04:19 +0900 |
commit | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch) | |
tree | 5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/html/designer-manual-3.html | |
parent | 14c414378d96f7463b989384f4a0e5dd76632b6d (diff) | |
download | tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.tar.gz tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.zip |
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/designer-manual-3.html')
-rw-r--r-- | doc/html/designer-manual-3.html | 8 |
1 files changed, 4 insertions, 4 deletions
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() ) { - <a href="ntqpixmap.html">TQPixmap</a> pixmap( 22, 22 ); + <a href="tqpixmap.html">TQPixmap</a> pixmap( 22, 22 ); int row = 0; TQMap<TQString,TQColor>::ConstIterator it; for ( it = m_colors.constBegin(); it != m_colors.constEnd(); ++it ) { <a href="tqcolor.html">TQColor</a> color = it.data(); - pixmap.<a href="ntqpixmap.html#fill">fill</a>( color ); + pixmap.<a href="tqpixmap.html#fill">fill</a>( color ); colorTable->setText( row, COL_NAME, it.key() ); colorTable->setPixmap( row, COL_NAME, pixmap ); colorTable->setText( row, COL_HEX, color.<a href="tqcolor.html#name">name</a>().upper() ); @@ -446,8 +446,8 @@ body { background: #ffffff; color: black; } <h4><a name="6-11"></a>colorSwatch()</h4> <pre> TQPixmap MainForm::colorSwatch( const <a href="tqcolor.html">TQColor</a> color ) { - <a href="ntqpixmap.html">TQPixmap</a> pixmap( 80, 80 ); - pixmap.<a href="ntqpixmap.html#fill">fill</a>( white ); + <a href="tqpixmap.html">TQPixmap</a> pixmap( 80, 80 ); + pixmap.<a href="tqpixmap.html#fill">fill</a>( white ); <a href="tqpainter.html">TQPainter</a> painter; painter.<a href="tqpainter.html#begin">begin</a>( &pixmap ); painter.<a href="tqpainter.html#setPen">setPen</a>( <a href="ntqt.html#PenStyle-enum">NoPen</a> ); |