diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/sql-overview-custom1-main-cpp.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/sql-overview-custom1-main-cpp.html')
-rw-r--r-- | doc/html/sql-overview-custom1-main-cpp.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/sql-overview-custom1-main-cpp.html b/doc/html/sql-overview-custom1-main-cpp.html index 6091f17c5..030691db7 100644 --- a/doc/html/sql-overview-custom1-main-cpp.html +++ b/doc/html/sql-overview-custom1-main-cpp.html @@ -48,20 +48,20 @@ body { background: #ffffff; color: black; } <a name="f16"></a>CustomEdit::CustomEdit( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) : <a href="ntqlineedit.html">TQLineEdit</a>( parent, name ) { - <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="ntqstring.html">TQString</a> &)), - this, TQ_SLOT(changed(const <a href="ntqstring.html">TQString</a> &)) ); + <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="tqstring.html">TQString</a> &)), + this, TQ_SLOT(changed(const <a href="tqstring.html">TQString</a> &)) ); } -void <a name="f17"></a>CustomEdit::changed( const <a href="ntqstring.html">TQString</a> &line ) +void <a name="f17"></a>CustomEdit::changed( const <a href="tqstring.html">TQString</a> &line ) { setUpperLine( line ); } -void <a name="f18"></a>CustomEdit::setUpperLine( const <a href="ntqstring.html">TQString</a> &line ) +void <a name="f18"></a>CustomEdit::setUpperLine( const <a href="tqstring.html">TQString</a> &line ) { - upperLineText = line.<a href="ntqstring.html#upper">upper</a>(); + upperLineText = line.<a href="tqstring.html#upper">upper</a>(); setText( upperLineText ); } |