summaryrefslogtreecommitdiffstats
path: root/doc/html/canvas-chart-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/canvas-chart-example.html')
-rw-r--r--doc/html/canvas-chart-example.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/canvas-chart-example.html b/doc/html/canvas-chart-example.html
index b72768c0c..d14d6a1ce 100644
--- a/doc/html/canvas-chart-example.html
+++ b/doc/html/canvas-chart-example.html
@@ -287,7 +287,7 @@ const <a href="ntqstring.html">TQString</a> APP_KEY = "/Chart/";
<a name="f596"></a>ChartForm::ChartForm( const <a href="ntqstring.html">TQString</a>&amp; filename )
: <a href="ntqmainwindow.html">TQMainWindow</a>( 0, 0, WDestructiveClose )
{
- <a href="ntqwidget.html#setIcon">setIcon</a>( TQPixmap( options_piechart ) );
+ <a href="tqwidget.html#setIcon">setIcon</a>( TQPixmap( options_piechart ) );
<a href="ntqaction.html">TQAction</a> *fileNewAction;
<a href="ntqaction.html">TQAction</a> *fileOpenAction;
@@ -462,15 +462,15 @@ const <a href="ntqstring.html">TQString</a> APP_KEY = "/Chart/";
<a name="x2873"></a> <a href="tqobject.html#connect">connect</a>( chartGroup, TQ_SIGNAL( <a href="qactiongroup.html#selected">selected</a>(TQAction*) ),
this, TQ_SLOT( updateChartType(TQAction*) ) );
- <a href="ntqwidget.html#resize">resize</a>( windowWidth, windowHeight );
+ <a href="tqwidget.html#resize">resize</a>( windowWidth, windowHeight );
if ( windowX != -1 || windowY != -1 )
- <a href="ntqwidget.html#move">move</a>( windowX, windowY );
+ <a href="tqwidget.html#move">move</a>( windowX, windowY );
m_canvas = new <a href="tqcanvas.html">TQCanvas</a>( this );
-<a name="x2876"></a> m_canvas-&gt;<a href="tqcanvas.html#resize">resize</a>( <a href="ntqwidget.html#width">width</a>(), height() );
+<a name="x2876"></a> m_canvas-&gt;<a href="tqcanvas.html#resize">resize</a>( <a href="tqwidget.html#width">width</a>(), height() );
m_canvasView = new CanvasView( m_canvas, &amp;m_elements, this );
<a href="ntqmainwindow.html#setCentralWidget">setCentralWidget</a>( m_canvasView );
- m_canvasView-&gt;<a href="ntqwidget.html#show">show</a>();
+ m_canvasView-&gt;<a href="tqwidget.html#show">show</a>();
if ( !filename.<a href="ntqstring.html#isEmpty">isEmpty</a>() )
load( filename );
@@ -496,7 +496,7 @@ ChartForm::~ChartForm()
void <a name="f597"></a>ChartForm::init()
{
- <a href="ntqwidget.html#setCaption">setCaption</a>( "Chart" );
+ <a href="tqwidget.html#setCaption">setCaption</a>( "Chart" );
m_filename = TQString::null;
m_changed = FALSE;
@@ -520,7 +520,7 @@ void <a name="f597"></a>ChartForm::init()
}
}
-<a name="x2896"></a>void ChartForm::<a href="ntqwidget.html#closeEvent">closeEvent</a>( <a href="qcloseevent.html">TQCloseEvent</a> * )
+<a name="x2896"></a>void ChartForm::<a href="tqwidget.html#closeEvent">closeEvent</a>( <a href="qcloseevent.html">TQCloseEvent</a> * )
{
fileQuit();
}
@@ -725,7 +725,7 @@ void <a name="f611"></a>ChartForm::optionsSetOptions()
{
OptionsForm *optionsForm = new OptionsForm( this );
optionsForm-&gt;chartTypeComboBox-&gt;setCurrentItem( m_chartType );
- optionsForm-&gt;<a href="ntqwidget.html#setFont">setFont</a>( m_font );
+ optionsForm-&gt;<a href="tqwidget.html#setFont">setFont</a>( m_font );
switch ( m_addValues ) {
case NO:
optionsForm-&gt;noRadioButton-&gt;setChecked( TRUE );
@@ -741,7 +741,7 @@ void <a name="f611"></a>ChartForm::optionsSetOptions()
if ( optionsForm-&gt;<a href="ntqdialog.html#exec">exec</a>() ) {
setChartType( ChartType(
optionsForm-&gt;chartTypeComboBox-&gt;currentItem()) );
-<a name="x2897"></a> m_font = optionsForm-&gt;<a href="ntqwidget.html#font">font</a>();
+<a name="x2897"></a> m_font = optionsForm-&gt;<a href="tqwidget.html#font">font</a>();
if ( optionsForm-&gt;noRadioButton-&gt;isChecked() )
m_addValues = NO;
else if ( optionsForm-&gt;yesRadioButton-&gt;isChecked() )
@@ -796,7 +796,7 @@ int main( int argc, char *argv[] )
ChartForm *cf = new ChartForm( filename );
app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( cf );
- cf-&gt;<a href="ntqwidget.html#show">show</a>();
+ cf-&gt;<a href="tqwidget.html#show">show</a>();
return app.<a href="ntqapplication.html#exec">exec</a>();
}