summaryrefslogtreecommitdiffstats
path: root/doc/html/grapher-nsplugin-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/grapher-nsplugin-example.html')
-rw-r--r--doc/html/grapher-nsplugin-example.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/grapher-nsplugin-example.html b/doc/html/grapher-nsplugin-example.html
index 3058528f4..8e17debec 100644
--- a/doc/html/grapher-nsplugin-example.html
+++ b/doc/html/grapher-nsplugin-example.html
@@ -190,7 +190,7 @@ private slots:
for ( Style s = Pie; styleName[s]; s = Style(s+1)) {
stylemenu-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>(styleName[s], s+100);
}
-<a name="x2767"></a> <a href="ntqobject.html#connect">connect</a>(stylemenu, TQ_SIGNAL(<a href="ntqpopupmenu.html#activated">activated</a>(int)),
+<a name="x2767"></a> <a href="tqobject.html#connect">connect</a>(stylemenu, TQ_SIGNAL(<a href="ntqpopupmenu.html#activated">activated</a>(int)),
this, TQ_SLOT(setStyleFromMenu(int)));
<a href="ntqwidget.html#setStyle">setStyle</a>(Pie);
@@ -212,11 +212,11 @@ Graph::~Graph()
{
if (style != s) {
if (pieRotationTimer)
- <a href="ntqobject.html#killTimer">killTimer</a>(pieRotationTimer);
+ <a href="tqobject.html#killTimer">killTimer</a>(pieRotationTimer);
<a name="x2749"></a> stylemenu-&gt;<a href="ntqmenudata.html#setItemChecked">setItemChecked</a>(100+style, FALSE);
style = s;
if ( style == Pie )
- pieRotationTimer = <a href="ntqobject.html#startTimer">startTimer</a>( 80 );
+ pieRotationTimer = <a href="tqobject.html#startTimer">startTimer</a>( 80 );
else
pieRotationTimer = 0;
stylemenu-&gt;<a href="ntqmenudata.html#setItemChecked">setItemChecked</a>(100+style, TRUE);
@@ -224,7 +224,7 @@ Graph::~Graph()
}
}
-<a name="x2755"></a>void Graph::<a href="ntqobject.html#timerEvent">timerEvent</a>(TQTimerEvent*)
+<a name="x2755"></a>void Graph::<a href="tqobject.html#timerEvent">timerEvent</a>(TQTimerEvent*)
{
pieRotation = ( pieRotation + 6 ) % 360; repaint(FALSE);
}
@@ -532,8 +532,8 @@ int <a name="f573"></a>Grapher::nCols() const
<a name="x2775"></a> int ptsize = fontsize ? atoi(fontsize) : graph-&gt;<a href="ntqwidget.html#font">font</a>().pointSize();
if (fontfamily) graph-&gt;<a href="ntqwidget.html#setFont">setFont</a>(TQFont(fontfamily, ptsize));
- <a href="ntqobject.html#connect">connect</a>(graph, TQ_SIGNAL(aboutPlugin()), this, TQ_SLOT(aboutPlugin()));
- <a href="ntqobject.html#connect">connect</a>(graph, TQ_SIGNAL(aboutData()), this, TQ_SLOT(aboutData()));
+ <a href="tqobject.html#connect">connect</a>(graph, TQ_SIGNAL(aboutPlugin()), this, TQ_SLOT(aboutPlugin()));
+ <a href="tqobject.html#connect">connect</a>(graph, TQ_SIGNAL(aboutData()), this, TQ_SLOT(aboutData()));
return graph;
}