summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial2-05.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial2-05.html')
-rw-r--r--doc/html/tutorial2-05.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/tutorial2-05.html b/doc/html/tutorial2-05.html
index b48f9e3d..df620973 100644
--- a/doc/html/tutorial2-05.html
+++ b/doc/html/tutorial2-05.html
@@ -535,7 +535,7 @@ and edit values, value colors, etc.
OptionsForm *optionsForm = new OptionsForm( this );
optionsForm->chartTypeComboBox->setCurrentItem( m_chartType );
optionsForm-&gt;<a href="tqwidget.html#setFont">setFont</a>( m_font );
-</pre><pre> if ( optionsForm-&gt;<a href="ntqdialog.html#exec">exec</a>() ) {
+</pre><pre> if ( optionsForm-&gt;<a href="tqdialog.html#exec">exec</a>() ) {
setChartType( ChartType(
optionsForm-&gt;chartTypeComboBox-&gt;currentItem()) );
m_font = optionsForm-&gt;<a href="tqwidget.html#font">font</a>();
@@ -555,7 +555,7 @@ elements.
<pre> void ChartForm::optionsSetData()
{
SetDataForm *setDataForm = new SetDataForm( &amp;m_elements, m_decimalPlaces, this );
- if ( setDataForm-&gt;<a href="ntqdialog.html#exec">exec</a>() ) {
+ if ( setDataForm-&gt;<a href="tqdialog.html#exec">exec</a>() ) {
m_changed = TRUE;
drawElements();
}