diff options
Diffstat (limited to 'doc/html/geometry.html')
-rw-r--r-- | doc/html/geometry.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/geometry.html b/doc/html/geometry.html index 027a59492..12be7b982 100644 --- a/doc/html/geometry.html +++ b/doc/html/geometry.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <h2> Overview </h2> -<a name="1"></a><p> <a href="qwidget.html">TQWidget</a> provides several functions that deal with a widget's +<a name="1"></a><p> <a href="ntqwidget.html">TQWidget</a> provides several functions that deal with a widget's geometry. Some of these functions operate on the pure client area (i.e. the window excluding the window frame), others include the window frame. The differentiation is done in a way that covers the @@ -100,8 +100,8 @@ example: <p> <pre> MyWidget* widget = new MyWidget ... - <a href="qpoint.html">TQPoint</a> p = widget->pos(); // store position - <a href="qsize.html">TQSize</a> s = widget->size(); // store size + <a href="ntqpoint.html">TQPoint</a> p = widget->pos(); // store position + <a href="ntqsize.html">TQSize</a> s = widget->size(); // store size ... widget = new MyWidget; widget->resize( s ); // restore size |