summaryrefslogtreecommitdiffstats
path: root/doc/html/tqglformat.html
diff options
context:
space:
mode:
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->format().stereo() ) {
// ok, goggles off
if ( !w->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 );