summaryrefslogtreecommitdiffstats
path: root/doc/html/tqglformat.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/tqglformat.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz
tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqglformat.html')
-rw-r--r--doc/html/tqglformat.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tqglformat.html b/doc/html/tqglformat.html
index c8b59c49d..f2c6a9c61 100644
--- a/doc/html/tqglformat.html
+++ b/doc/html/tqglformat.html
@@ -130,7 +130,7 @@ requested features the system was able to provide:
if ( !w-&gt;format().stereo() ) {
// ok, goggles off
if ( !w-&gt;format().hasOverlay() ) {
- <a href="ntqapplication.html#qFatal">tqFatal</a>( "Cool hardware required" );
+ <a href="tqapplication.html#qFatal">tqFatal</a>( "Cool hardware required" );
}
}
</pre>
@@ -171,9 +171,9 @@ in classes derived from <a href="tqglwidget.html">TQGLWidget</a>, for example:
: <a href="tqglwidget.html">TQGLWidget</a>( <a href="#TQGLFormat">TQGLFormat</a>( StencilBuffer | AlphaChannel ), parent, name )
{
if ( !format().stencil() )
- <a href="ntqapplication.html#qWarning">tqWarning</a>( "Could not get stencil buffer; results will be suboptimal" );
+ <a href="tqapplication.html#qWarning">tqWarning</a>( "Could not get stencil buffer; results will be suboptimal" );
if ( !format().alphaChannel() )
- <a href="ntqapplication.html#qWarning">tqWarning</a>( "Could not get alpha channel; results will be suboptimal" );
+ <a href="tqapplication.html#qWarning">tqWarning</a>( "Could not get alpha channel; results will be suboptimal" );
...
}
</pre>
@@ -255,7 +255,7 @@ FALSE. Double buffering is enabled by default.
<p> Returns TRUE if the window system has any OpenGL support;
otherwise returns FALSE.
-<p> <b>Warning:</b> This function must not be called until the <a href="ntqapplication.html">TQApplication</a>
+<p> <b>Warning:</b> This function must not be called until the <a href="tqapplication.html">TQApplication</a>
object has been created.
<h3 class=fn>bool <a name="hasOpenGLOverlays"></a>TQGLFormat::hasOpenGLOverlays ()<tt> [static]</tt>
@@ -263,7 +263,7 @@ object has been created.
<p> Returns TRUE if the window system supports OpenGL overlays;
otherwise returns FALSE.
-<p> <b>Warning:</b> This function must not be called until the <a href="ntqapplication.html">TQApplication</a>
+<p> <b>Warning:</b> This function must not be called until the <a href="tqapplication.html">TQApplication</a>
object has been created.
<h3 class=fn>bool <a name="hasOverlay"></a>TQGLFormat::hasOverlay () const
@@ -312,7 +312,7 @@ Sets a new default TQGLFormat for the application to <em>f</em>. For
example, to set single buffering as the default instead of double
buffering, your main() might contain code like this:
<pre>
- <a href="ntqapplication.html">TQApplication</a> a(argc, argv);
+ <a href="tqapplication.html">TQApplication</a> a(argc, argv);
TQGLFormat f;
f.<a href="#setDoubleBuffer">setDoubleBuffer</a>( FALSE );
TQGLFormat::<a href="#setDefaultFormat">setDefaultFormat</a>( f );