summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqaxbase.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-27 19:25:43 +0900
committerMichele Calgaro <[email protected]>2023-12-31 22:16:03 +0900
commitecca365daf06c711cf30f93f4c773dabf5642790 (patch)
tree0b2f6780f60fd7eb35c84cc899e7d51db189d67d /doc/man/man3/tqaxbase.3qt
parent1c30858477bcf3a4c74866d9a3d26f57753dd36a (diff)
downloadtqt3-ecca365daf06c711cf30f93f4c773dabf5642790.tar.gz
tqt3-ecca365daf06c711cf30f93f4c773dabf5642790.zip
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit fb401a891f1b426e9419c0cb16403df407138611)
Diffstat (limited to 'doc/man/man3/tqaxbase.3qt')
-rw-r--r--doc/man/man3/tqaxbase.3qt8
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