summaryrefslogtreecommitdiffstats
path: root/doc/html/t7-main-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/t7-main-cpp.html')
-rw-r--r--doc/html/t7-main-cpp.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/t7-main-cpp.html b/doc/html/t7-main-cpp.html
index 0e1c4695..8e49a9b6 100644
--- a/doc/html/t7-main-cpp.html
+++ b/doc/html/t7-main-cpp.html
@@ -61,7 +61,7 @@ public:
<a href="ntqpushbutton.html">TQPushButton</a> *quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" );
quit-&gt;<a href="ntqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
- <a href="ntqobject.html#connect">connect</a>( quit, SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
+ <a href="ntqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
<a href="ntqgrid.html">TQGrid</a> *grid = new <a href="ntqgrid.html">TQGrid</a>( 4, this );
@@ -70,8 +70,8 @@ public:
for( int c = 0 ; c &lt; 4 ; c++ ) {
LCDRange* lr = new LCDRange( grid );
if ( previous )
- <a href="ntqobject.html#connect">connect</a>( lr, SIGNAL(valueChanged(int)),
- previous, SLOT(setValue(int)) );
+ <a href="ntqobject.html#connect">connect</a>( lr, TQ_SIGNAL(valueChanged(int)),
+ previous, TQ_SLOT(setValue(int)) );
previous = lr;
}
}