diff options
author | Michele Calgaro <[email protected]> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/t8-cannon-cpp.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/t8-cannon-cpp.html')
-rw-r--r-- | doc/html/t8-cannon-cpp.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/t8-cannon-cpp.html b/doc/html/t8-cannon-cpp.html index 9b80cea96..d3574b431 100644 --- a/doc/html/t8-cannon-cpp.html +++ b/doc/html/t8-cannon-cpp.html @@ -42,11 +42,11 @@ body { background: #ffffff; color: black; } #include <<a href="qpainter-h.html">ntqpainter.h</a>> -<a name="f34"></a>CannonField::CannonField( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqwidget.html">TQWidget</a>( parent, name ) +<a name="f34"></a>CannonField::CannonField( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) + : <a href="tqwidget.html">TQWidget</a>( parent, name ) { ang = 45; - <a href="ntqwidget.html#setPalette">setPalette</a>( TQPalette( TQColor( 250, 250, 200) ) ); + <a href="tqwidget.html#setPalette">setPalette</a>( TQPalette( TQColor( 250, 250, 200) ) ); } @@ -59,12 +59,12 @@ void <a name="f35"></a>CannonField::setAngle( int degrees ) if ( ang == degrees ) return; ang = degrees; - <a href="ntqwidget.html#repaint">repaint</a>(); + <a href="tqwidget.html#repaint">repaint</a>(); emit angleChanged( ang ); } -void CannonField::<a href="ntqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * ) +void CannonField::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * ) { <a href="ntqstring.html">TQString</a> s = "Angle = " + TQString::number( ang ); <a href="ntqpainter.html">TQPainter</a> p( this ); @@ -72,7 +72,7 @@ void CannonField::<a href="ntqwidget.html#paintEvent">paintEvent</a>( <a href="q } -TQSizePolicy CannonField::<a href="ntqwidget.html#sizePolicy">sizePolicy</a>() const +TQSizePolicy CannonField::<a href="tqwidget.html#sizePolicy">sizePolicy</a>() const { return TQSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Expanding ); } |