summaryrefslogtreecommitdiffstats
path: root/doc/html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-07 21:22:27 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-07 21:22:27 +0900
commitf2b3ea52ef97d4d6f75d60d48f98a35bc1469368 (patch)
tree596c51468ab6339193f2b22de8e174ffef28be60 /doc/html
parentfb6884ead2891c09ee54fca2d753fb8d34359e28 (diff)
downloadtqt3-f2b3ea52ef97d4d6f75d60d48f98a35bc1469368.tar.gz
tqt3-f2b3ea52ef97d4d6f75d60d48f98a35bc1469368.zip
Drop compatibility code for TQSignal
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html')
-rw-r--r--doc/html/ntqsignal.html26
-rw-r--r--doc/html/porting.html8
-rw-r--r--doc/html/qsignal-h.html9
-rw-r--r--doc/html/qsignal-members.html4
4 files changed, 4 insertions, 43 deletions
diff --git a/doc/html/ntqsignal.html b/doc/html/ntqsignal.html
index e57bb471d..67d2d3d39 100644
--- a/doc/html/ntqsignal.html
+++ b/doc/html/ntqsignal.html
@@ -44,10 +44,6 @@ that don't inherit TQObject.
<li class=fn>bool <a href="#connect"><b>connect</b></a> ( const&nbsp;TQObject&nbsp;*&nbsp;receiver, const&nbsp;char&nbsp;*&nbsp;member )</li>
<li class=fn>bool <a href="#disconnect"><b>disconnect</b></a> ( const&nbsp;TQObject&nbsp;*&nbsp;receiver, const&nbsp;char&nbsp;*&nbsp;member = 0 )</li>
<li class=fn>void <a href="#activate"><b>activate</b></a> ()</li>
-<li class=fn>bool isBlocked () const &nbsp;<em>(obsolete)</em></li>
-<li class=fn>void block ( bool&nbsp;b ) &nbsp;<em>(obsolete)</em></li>
-<li class=fn>void setParameter ( int&nbsp;value ) &nbsp;<em>(obsolete)</em></li>
-<li class=fn>int parameter () const &nbsp;<em>(obsolete)</em></li>
<li class=fn>void <a href="#setValue"><b>setValue</b></a> ( const&nbsp;TQVariant&nbsp;&amp;&nbsp;value )</li>
<li class=fn>TQVariant <a href="#value"><b>value</b></a> () const</li>
</ul>
@@ -129,14 +125,6 @@ with all TQObjects.
parameter has been set with <a href="#setValue">setValue</a>(), this value is passed in
the signal.
-<h3 class=fn>void <a name="block"></a>TQSignal::block ( bool&nbsp;b )
-</h3>
-
-<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
-<p> Blocks the signal if <em>b</em> is TRUE, or unblocks the signal if <em>b</em> is FALSE.
-<p> An activated signal disappears into hyperspace if it is blocked.
-<p> <p>See also <a href="#isBlocked">isBlocked</a>(), <a href="#activate">activate</a>(), and <a href="ntqobject.html#blockSignals">TQObject::blockSignals</a>().
-
<h3 class=fn>bool <a name="connect"></a>TQSignal::connect ( const&nbsp;<a href="ntqobject.html">TQObject</a>&nbsp;*&nbsp;receiver, const&nbsp;char&nbsp;*&nbsp;member )
</h3>
Connects the signal to <em>member</em> in object <em>receiver</em>.
@@ -147,20 +135,6 @@ Connects the signal to <em>member</em> in object <em>receiver</em>.
Disonnects the signal from <em>member</em> in object <em>receiver</em>.
<p> <p>See also <a href="#connect">connect</a>() and <a href="ntqobject.html#disconnect">TQObject::disconnect</a>().
-<h3 class=fn>bool <a name="isBlocked"></a>TQSignal::isBlocked () const
-</h3>
-
-<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
-<p> Returns TRUE if the signal is blocked, or FALSE if it is not blocked.
-<p> The signal is not blocked by default.
-<p> <p>See also <a href="#block">block</a>() and <a href="ntqobject.html#signalsBlocked">TQObject::signalsBlocked</a>().
-
-<h3 class=fn>int <a name="parameter"></a>TQSignal::parameter () const
-</h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
-
-<h3 class=fn>void <a name="setParameter"></a>TQSignal::setParameter ( int&nbsp;value )
-</h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
-
<h3 class=fn>void <a name="setValue"></a>TQSignal::setValue ( const&nbsp;<a href="ntqvariant.html">TQVariant</a>&nbsp;&amp;&nbsp;value )
</h3>
Sets the signal's parameter to <em>value</em>
diff --git a/doc/html/porting.html b/doc/html/porting.html
index ee8cb52b4..3698b9590 100644
--- a/doc/html/porting.html
+++ b/doc/html/porting.html
@@ -261,6 +261,10 @@ have been changed:
<li> TQPalette::setNormal(). Use TQPalette::setActive instead.
<li> TQPointArray::quadBezier()
<li> TQRegExp::find()
+<li> TQSignal::block(bool b)
+<li> TQSignal::isBlocked() const
+<li> TQSignal::parameter() const. Use TQSignal::value() instead.
+<li> TQSignal::setParameter(int value). Use TQSignal::setValue() instead.
<li> TQSpinBox::downButton()
<li> TQSpinBox::upButton()
<li> TQString::basicDirection()
@@ -360,10 +364,6 @@ new code.
<li> <a href="ntqregexp.html#match">TQRegExp::match</a>( const TQString &amp; str, int index = 0, int *len = 0, bool indexIsStart = TRUE ) const
<li> <a href="ntqscrollview.html#childIsVisible">TQScrollView::childIsVisible</a>( TQWidget *child )
<li> <a href="ntqscrollview.html#showChild">TQScrollView::showChild</a>( TQWidget *child, bool show = TRUE )
-<li> <a href="ntqsignal.html#block">TQSignal::block</a>( bool b )
-<li> <a href="ntqsignal.html#isBlocked">TQSignal::isBlocked</a>() const
-<li> <a href="ntqsignal.html#parameter">TQSignal::parameter</a>() const
-<li> <a href="ntqsignal.html#setParameter">TQSignal::setParameter</a>( int value )
<li> <a href="ntqsimplerichtext.html#draw">TQSimpleRichText::draw</a>( <a href="ntqpainter.html">TQPainter</a> *p, int x, int y, const <a href="ntqregion.html">TQRegion</a> &amp; clipRegion, const <a href="qcolorgroup.html">TQColorGroup</a> &amp; cg, const <a href="ntqbrush.html">TQBrush</a> *paper = 0 ) const
<li> <a href="ntqstring.html#ascii">TQString::ascii</a>() const
<li> <a href="ntqstring.html#data">TQString::data</a>() const
diff --git a/doc/html/qsignal-h.html b/doc/html/qsignal-h.html
index f2fd71e50..82e664d5c 100644
--- a/doc/html/qsignal-h.html
+++ b/doc/html/qsignal-h.html
@@ -96,15 +96,6 @@ public:
void activate();
-#ifndef TQT_NO_COMPAT
- bool isBlocked() const { return TQObject::signalsBlocked(); }
- void block( bool b ) { TQObject::blockSignals( b ); }
-#ifndef TQT_NO_VARIANT
- void setParameter( int value );
- int parameter() const;
-#endif
-#endif
-
#ifndef TQT_NO_VARIANT
void setValue( const TQVariant &amp;value );
TQVariant value() const;
diff --git a/doc/html/qsignal-members.html b/doc/html/qsignal-members.html
index 802459ec9..82b805eb3 100644
--- a/doc/html/qsignal-members.html
+++ b/doc/html/qsignal-members.html
@@ -38,7 +38,6 @@ body { background: #ffffff; color: black; }
<li><a href="ntqsignal.html#TQSignal">TQSignal</a>()
<li><a href="ntqsignal.html#~TQSignal">~TQSignal</a>()
<li><a href="ntqsignal.html#activate">activate</a>()
-<li><a href="ntqsignal.html#block">block</a>()
<li><a href="ntqobject.html#blockSignals">blockSignals</a>()
<li><a href="ntqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="ntqobject.html#child">child</a>()
@@ -61,7 +60,6 @@ body { background: #ffffff; color: black; }
<li><a href="ntqobject.html#insertChild">insertChild</a>()
<li><a href="ntqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="ntqobject.html#isA">isA</a>()
-<li><a href="ntqsignal.html#isBlocked">isBlocked</a>()
<li><a href="ntqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqobject.html#killTimer">killTimer</a>()
<li><a href="ntqobject.html#killTimers">killTimers</a>()
@@ -69,7 +67,6 @@ body { background: #ffffff; color: black; }
<li><a href="ntqobject.html#name">name</a>()
<li><a href="ntqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="ntqobject.html#objectTrees">objectTrees</a>()
-<li><a href="ntqsignal.html#parameter">parameter</a>()
<li><a href="ntqobject.html#parent">parent</a>()
<li><a href="ntqobject.html#property">property</a>()
<li><a href="ntqobject.html#queryList">queryList</a>()
@@ -77,7 +74,6 @@ body { background: #ffffff; color: black; }
<li><a href="ntqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqobject.html#sender">sender</a>()
<li><a href="ntqobject.html#setName">setName</a>()
-<li><a href="ntqsignal.html#setParameter">setParameter</a>()
<li><a href="ntqobject.html#setProperty">setProperty</a>()
<li><a href="ntqsignal.html#setValue">setValue</a>()
<li><a href="ntqobject.html#signalsBlocked">signalsBlocked</a>()