summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqaxbase.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
commitfb401a891f1b426e9419c0cb16403df407138611 (patch)
tree045b51949b3140039e37d898d8b0513016a86bea /doc/man/man3/tqaxbase.3qt
parenta9d178f1000475ba1727ffe123a2c54585488c01 (diff)
downloadtqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz
tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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