summaryrefslogtreecommitdiffstats
path: root/doc/html/sql-overview-custom1-main-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/sql-overview-custom1-main-cpp.html')
-rw-r--r--doc/html/sql-overview-custom1-main-cpp.html10
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> &amp;)),
- this, TQ_SLOT(changed(const <a href="ntqstring.html">TQString</a> &amp;)) );
+ <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="tqstring.html">TQString</a> &amp;)),
+ this, TQ_SLOT(changed(const <a href="tqstring.html">TQString</a> &amp;)) );
}
-void <a name="f17"></a>CustomEdit::changed( const <a href="ntqstring.html">TQString</a> &amp;line )
+void <a name="f17"></a>CustomEdit::changed( const <a href="tqstring.html">TQString</a> &amp;line )
{
setUpperLine( line );
}
-void <a name="f18"></a>CustomEdit::setUpperLine( const <a href="ntqstring.html">TQString</a> &amp;line )
+void <a name="f18"></a>CustomEdit::setUpperLine( const <a href="tqstring.html">TQString</a> &amp;line )
{
- upperLineText = line.<a href="ntqstring.html#upper">upper</a>();
+ upperLineText = line.<a href="tqstring.html#upper">upper</a>();
setText( upperLineText );
}