From 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 20 Jul 2024 20:15:52 +0900 Subject: Rename graphics class nt* related files to equivalent tq* (part 2) Signed-off-by: Michele Calgaro --- doc/html/chart-chartform_canvas-cpp.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/chart-chartform_canvas-cpp.html') diff --git a/doc/html/chart-chartform_canvas-cpp.html b/doc/html/chart-chartform_canvas-cpp.html index ffa470ec8..3364e484e 100644 --- a/doc/html/chart-chartform_canvas-cpp.html +++ b/doc/html/chart-chartform_canvas-cpp.html @@ -125,7 +125,7 @@ void ChartForm::drawPieChart( const double scales[], double t double proY = m_elements[i].proY( PIE ); if ( proX < 0 || proY < 0 ) { // Find the centre of the pie segment - TQRect rect = arc->boundingRect(); + TQRect rect = arc->boundingRect(); proX = ( rect.width() / 2 ) + rect.x(); proY = ( rect.height() / 2 ) + rect.y(); // Centre text over the centre of the pie segment @@ -156,8 +156,8 @@ void ChartForm::drawVerticalBarChart( double height = m_canvas->height(); int prowidth = int(width / count); int x = 0; - TQPen pen; - pen.setStyle( NoPen ); + TQPen pen; + pen.setStyle( NoPen ); for ( int i = 0; i < MAX_ELEMENTS; ++i ) { if ( m_elements[i].isValid() ) { @@ -201,8 +201,8 @@ void ChartForm::drawHorizontalBarChart( double height = m_canvas->height(); int proheight = int(height / count); int y = 0; - TQPen pen; - pen.setStyle( NoPen ); + TQPen pen; + pen.setStyle( NoPen ); for ( int i = 0; i < MAX_ELEMENTS; ++i ) { if ( m_elements[i].isValid() ) { -- cgit v1.2.3