diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-23 14:04:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-27 16:08:54 +0900 |
commit | 04913ce7a46fd027856e83a96205fdc388742a19 (patch) | |
tree | a04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/grapher-nsplugin-example.html | |
parent | c11c0f228b65f7471a26513ef8dbde413e75f8fa (diff) | |
download | tqt-04913ce7.tar.gz tqt-04913ce7.zip |
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/grapher-nsplugin-example.html')
-rw-r--r-- | doc/html/grapher-nsplugin-example.html | 12 |
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-><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-><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-><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-><a href="ntqwidget.html#font">font</a>().pointSize(); if (fontfamily) graph-><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; } |