From fef846914f8db6dc117e206ef913d519bf6bb33e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 29 Jul 2024 12:43:23 +0900 Subject: Rename basic widget nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tutorial2-05.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/tutorial2-05.html') diff --git a/doc/html/tutorial2-05.html b/doc/html/tutorial2-05.html index b48f9e3dd..df6209736 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->setFont( m_font ); -
        if ( optionsForm->exec() ) {
+
        if ( optionsForm->exec() ) {
             setChartType( ChartType(
                     optionsForm->chartTypeComboBox->currentItem()) );
             m_font = optionsForm->font();
@@ -555,7 +555,7 @@ elements.
 
    void ChartForm::optionsSetData()
     {
         SetDataForm *setDataForm = new SetDataForm( &m_elements, m_decimalPlaces, this );
-        if ( setDataForm->exec() ) {
+        if ( setDataForm->exec() ) {
             m_changed = TRUE;
             drawElements();
         }
-- 
cgit v1.2.3