diff options
Diffstat (limited to 'doc/man/man3/tqaxbase.3qt')
-rw-r--r-- | doc/man/man3/tqaxbase.3qt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqaxbase.3qt b/doc/man/man3/tqaxbase.3qt index 8b365f36c..7d8a68b73 100644 --- a/doc/man/man3/tqaxbase.3qt +++ b/doc/man/man3/tqaxbase.3qt @@ -120,7 +120,7 @@ QAxBase is an abstract class that cannot be used directly, and is instantiated t .PP .nf .br - connect( buttonBack, SIGNAL(clicked()), webBrowser, SLOT(GoBack()) ); + connect( buttonBack, TQ_SIGNAL(clicked()), webBrowser, TQ_SLOT(GoBack()) ); .br .fi .PP @@ -146,9 +146,9 @@ Outgoing events supported by the COM object are emitted as standard TQt signals. .PP .nf .br - connect( webBrowser, SIGNAL(TitleChanged(const TQString&)), + connect( webBrowser, TQ_SIGNAL(TitleChanged(const TQString&)), .br - this, SLOT(setCaption(const TQString&)) ); + this, TQ_SLOT(setCaption(const TQString&)) ); .br .fi .PP @@ -203,7 +203,7 @@ use the QAxBase API like this: object.setProperty( "font", QFont( "Times New Roman", 12 ) ); .br .br - connect( this, SIGNAL(clicked(int)), &object, SLOT(showColumn(int)) ); + connect( this, TQ_SIGNAL(clicked(int)), &object, TQ_SLOT(showColumn(int)) ); .br bool ok = object.dynamicCall( "addColumn(const TQString&)", "Column 1" ).toBool(); .br |