diff options
Diffstat (limited to 'doc/html/tutorial2-09.html')
-rw-r--r-- | doc/html/tutorial2-09.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/tutorial2-09.html b/doc/html/tutorial2-09.html index dbc4ad9d5..174c2d3e1 100644 --- a/doc/html/tutorial2-09.html +++ b/doc/html/tutorial2-09.html @@ -50,16 +50,16 @@ apply to all data sets in one place. <a href="tqfont.html">TQFont</a> font() const { return m_font; } void setFont( <a href="tqfont.html">TQFont</a> font ); - <a href="ntqlabel.html">TQLabel</a> *chartTypeTextLabel; + <a href="tqlabel.html">TQLabel</a> *chartTypeTextLabel; <a href="ntqcombobox.html">TQComboBox</a> *chartTypeComboBox; <a href="ntqpushbutton.html">TQPushButton</a> *fontPushButton; - <a href="ntqlabel.html">TQLabel</a> *fontTextLabel; + <a href="tqlabel.html">TQLabel</a> *fontTextLabel; <a href="ntqframe.html">TQFrame</a> *addValuesFrame; <a href="ntqbuttongroup.html">TQButtonGroup</a> *addValuesButtonGroup; <a href="ntqradiobutton.html">TQRadioButton</a> *noRadioButton; <a href="ntqradiobutton.html">TQRadioButton</a> *yesRadioButton; <a href="ntqradiobutton.html">TQRadioButton</a> *asPercentageRadioButton; - <a href="ntqlabel.html">TQLabel</a> *decimalPlacesTextLabel; + <a href="tqlabel.html">TQLabel</a> *decimalPlacesTextLabel; <a href="ntqspinbox.html">TQSpinBox</a> *decimalPlacesSpinBox; <a href="ntqpushbutton.html">TQPushButton</a> *okPushButton; <a href="ntqpushbutton.html">TQPushButton</a> *cancelPushButton; @@ -117,7 +117,7 @@ vertical box layout. <p> <pre> chartTypeLayout = new <a href="qhboxlayout.html">TQHBoxLayout</a>( 0, 0, 6 ); </pre> <p> The chart type label and combobox will be laid out side by side. -<p> <pre> chartTypeTextLabel = new <a href="ntqlabel.html">TQLabel</a>( "&Chart Type", this ); +<p> <pre> chartTypeTextLabel = new <a href="tqlabel.html">TQLabel</a>( "&Chart Type", this ); <a name="x2631"></a> chartTypeLayout-><a href="qboxlayout.html#addWidget">addWidget</a>( chartTypeTextLabel ); chartTypeComboBox = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, this ); @@ -143,7 +143,7 @@ vertical layout. TQSizePolicy::Minimum ); <a name="x2629"></a> fontLayout-><a href="qboxlayout.html#addItem">addItem</a>( spacer ); - fontTextLabel = new <a href="ntqlabel.html">TQLabel</a>( this ); // Must be set by caller via setFont() + fontTextLabel = new <a href="tqlabel.html">TQLabel</a>( this ); // Must be set by caller via setFont() fontLayout-><a href="qboxlayout.html#addWidget">addWidget</a>( fontTextLabel ); optionsFormLayout-><a href="qboxlayout.html#addLayout">addLayout</a>( fontLayout ); </pre> @@ -198,8 +198,8 @@ caller to read the data from the dialog's widgets and perform any necessary actions. <li> If the user clicks Cancel we call <a href="ntqdialog.html#reject">TQDialog::reject</a>(). </ol> -<p> <pre> <a name="x2642"></a> chartTypeTextLabel-><a href="ntqlabel.html#setBuddy">setBuddy</a>( chartTypeComboBox ); - decimalPlacesTextLabel-><a href="ntqlabel.html#setBuddy">setBuddy</a>( decimalPlacesSpinBox ); +<p> <pre> <a name="x2642"></a> chartTypeTextLabel-><a href="tqlabel.html#setBuddy">setBuddy</a>( chartTypeComboBox ); + decimalPlacesTextLabel-><a href="tqlabel.html#setBuddy">setBuddy</a>( decimalPlacesSpinBox ); </pre> <p> We use the setBuddy() function to associate widgets with label accelerators. @@ -225,7 +225,7 @@ will present a textual description of the font in the font label. label += " Bold"; <a name="x2636"></a> if ( font.<a href="tqfont.html#italic">italic</a>() ) label += " Italic"; - fontTextLabel-><a href="ntqlabel.html#setText">setText</a>( label ); + fontTextLabel-><a href="tqlabel.html#setText">setText</a>( label ); m_font = font; } </pre> |