diff options
Diffstat (limited to 'doc/html/layout-example.html')
-rw-r--r-- | doc/html/layout-example.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/layout-example.html b/doc/html/layout-example.html index 89a7ccee6..272713f50 100644 --- a/doc/html/layout-example.html +++ b/doc/html/layout-example.html @@ -48,7 +48,7 @@ classes, <a href="qgridlayout.html">TQGridLayout</a>, <a href="qboxlayout.html"> *****************************************************************************/ #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qlabel-h.html">ntqlabel.h</a>> +#include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqcolor-h.html">tqcolor.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> @@ -148,7 +148,7 @@ public: // Make a label that is a buddy of the line edit <a href="tqstring.html">TQString</a> s; s.<a href="tqstring.html#sprintf">sprintf</a>( "Line &%d", row+1 ); - <a href="ntqlabel.html">TQLabel</a> *label = new <a href="ntqlabel.html">TQLabel</a>( ed, s, this ); + <a href="tqlabel.html">TQLabel</a> *label = new <a href="tqlabel.html">TQLabel</a>( ed, s, this ); // The label goes in the first column. grid-><a href="qgridlayout.html#addWidget">addWidget</a>( label, row, labelCol ); } @@ -166,15 +166,15 @@ public: grid-><a href="qgridlayout.html#setColStretch">setColStretch</a>( multiCol, 20 ); // Add a widget at the bottom. - <a href="ntqlabel.html">TQLabel</a>* sb = new <a href="ntqlabel.html">TQLabel</a>( this ); - sb-><a href="ntqlabel.html#setText">setText</a>( "Let's pretend this is a status bar" ); + <a href="tqlabel.html">TQLabel</a>* sb = new <a href="tqlabel.html">TQLabel</a>( this ); + sb-><a href="tqlabel.html#setText">setText</a>( "Let's pretend this is a status bar" ); sb-><a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); // This widget will use all horizontal space, and have a fixed height. // we should have made a subclass and implemented sizePolicy there... <a name="x545"></a><a name="x537"></a> sb-><a href="tqwidget.html#setFixedHeight">setFixedHeight</a>( sb-><a href="tqwidget.html#sizeHint">sizeHint</a>().height() ); -<a name="x535"></a> sb-><a href="ntqlabel.html#setAlignment">setAlignment</a>( AlignVCenter | AlignLeft ); +<a name="x535"></a> sb-><a href="tqlabel.html#setAlignment">setAlignment</a>( AlignVCenter | AlignLeft ); topLayout-><a href="qboxlayout.html#addWidget">addWidget</a>( sb ); <a name="x538"></a> topLayout-><a href="ntqlayout.html#activate">activate</a>(); |