From 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Jun 2024 23:07:22 +0900 Subject: Rename ntqwidget* related files to equivalent tqwidget* Signed-off-by: Michele Calgaro --- doc/html/chart-chartform-cpp.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'doc/html/chart-chartform-cpp.html') diff --git a/doc/html/chart-chartform-cpp.html b/doc/html/chart-chartform-cpp.html index cbb61428c..35557c9a9 100644 --- a/doc/html/chart-chartform-cpp.html +++ b/doc/html/chart-chartform-cpp.html @@ -75,7 +75,7 @@ const TQString APP_KEY = "/Chart/"; ChartForm::ChartForm( const TQString& filename ) : TQMainWindow( 0, 0, WDestructiveClose ) { - setIcon( TQPixmap( options_piechart ) ); + setIcon( TQPixmap( options_piechart ) ); TQAction *fileNewAction; TQAction *fileOpenAction; @@ -250,15 +250,15 @@ const TQString APP_KEY = "/Chart/"; connect( chartGroup, TQ_SIGNAL( selected(TQAction*) ), this, TQ_SLOT( updateChartType(TQAction*) ) ); - resize( windowWidth, windowHeight ); + resize( windowWidth, windowHeight ); if ( windowX != -1 || windowY != -1 ) - move( windowX, windowY ); + move( windowX, windowY ); m_canvas = new TQCanvas( this ); - m_canvas->resize( width(), height() ); + m_canvas->resize( width(), height() ); m_canvasView = new CanvasView( m_canvas, &m_elements, this ); setCentralWidget( m_canvasView ); - m_canvasView->show(); + m_canvasView->show(); if ( !filename.isEmpty() ) load( filename ); @@ -284,7 +284,7 @@ ChartForm::~ChartForm() void ChartForm::init() { - setCaption( "Chart" ); + setCaption( "Chart" ); m_filename = TQString::null; m_changed = FALSE; @@ -308,7 +308,7 @@ void ChartForm::init() } } -void ChartForm::closeEvent( TQCloseEvent * ) +void ChartForm::closeEvent( TQCloseEvent * ) { fileQuit(); } @@ -513,7 +513,7 @@ void ChartForm::optionsSetOptions() { OptionsForm *optionsForm = new OptionsForm( this ); optionsForm->chartTypeComboBox->setCurrentItem( m_chartType ); - optionsForm->setFont( m_font ); + optionsForm->setFont( m_font ); switch ( m_addValues ) { case NO: optionsForm->noRadioButton->setChecked( TRUE ); @@ -529,7 +529,7 @@ void ChartForm::optionsSetOptions() if ( optionsForm->exec() ) { setChartType( ChartType( optionsForm->chartTypeComboBox->currentItem()) ); - m_font = optionsForm->font(); + m_font = optionsForm->font(); if ( optionsForm->noRadioButton->isChecked() ) m_addValues = NO; else if ( optionsForm->yesRadioButton->isChecked() ) -- cgit v1.2.1