From fb401a891f1b426e9419c0cb16403df407138611 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro --- doc/html/qaxbase.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/qaxbase.html') diff --git a/doc/html/qaxbase.html b/doc/html/qaxbase.html index 517c32ab5..5e756fa76 100644 --- a/doc/html/qaxbase.html +++ b/doc/html/qaxbase.html @@ -94,7 +94,7 @@ through its IUnknown implementation. If the COM object implements the IDispatch interface, the properties and methods of that object become available as TQt properties and slots.

-    connect( buttonBack, SIGNAL(clicked()), webBrowser, SLOT(GoBack()) );
+    connect( buttonBack, TQ_SIGNAL(clicked()), webBrowser, TQ_SLOT(GoBack()) );
     

Properties exposed by the object's IDispatch implementation can be @@ -116,8 +116,8 @@ object's IDispatch implementation can be called directly using

Outgoing events supported by the COM object are emitted as standard TQt signals.

-    connect( webBrowser, SIGNAL(TitleChanged(const TQString&)),
-             this, SLOT(setCaption(const TQString&)) );
+    connect( webBrowser, TQ_SIGNAL(TitleChanged(const TQString&)),
+             this, TQ_SLOT(setCaption(const TQString&)) );
     

TQAxBase transparently converts between COM data types and the @@ -243,7 +243,7 @@ use the TQAxBase API like this: TQString text = object.property( "text" ).toString(); object.setProperty( "font", TQFont( "Times New Roman", 12 ) ); - connect( this, SIGNAL(clicked(int)), &object, SLOT(showColumn(int)) ); + connect( this, TQ_SIGNAL(clicked(int)), &object, TQ_SLOT(showColumn(int)) ); bool ok = object.dynamicCall( "addColumn(const TQString&)", "Column 1" ).toBool(); TQValueList<TQVariant> varlist; -- cgit v1.2.1