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/qaxcontainer-example-qutlook.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qaxcontainer-example-qutlook.html')
-rw-r--r-- | doc/html/qaxcontainer-example-qutlook.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/qaxcontainer-example-qutlook.html b/doc/html/qaxcontainer-example-qutlook.html index e29720f4c..13407f8e1 100644 --- a/doc/html/qaxcontainer-example-qutlook.html +++ b/doc/html/qaxcontainer-example-qutlook.html @@ -79,10 +79,10 @@ a new protected slot <tt>updateOutlook</tt>, and also three members of type <a h The implementation of the ABListViewItem class is trivial: <pre> ABListViewItem::ABListViewItem( <a href="ntqlistview.html">TQListView</a> *listview, - <a href="ntqstring.html">TQString</a> firstName, - <a href="ntqstring.html">TQString</a> lastName, - <a href="ntqstring.html">TQString</a> address, - <a href="ntqstring.html">TQString</a> eMail, + <a href="tqstring.html">TQString</a> firstName, + <a href="tqstring.html">TQString</a> lastName, + <a href="tqstring.html">TQString</a> address, + <a href="tqstring.html">TQString</a> eMail, <a href="qaxobject.html">TQAxObject</a> *contact ) : <a href="qlistviewitem.html">TQListViewItem</a>( listview, firstName, lastName, address, eMail ), contact_item( contact ) { @@ -166,10 +166,10 @@ entries, so the item has to be removed from its parent object. <a href="qaxobject.html">TQAxObject</a> *item = contactItems->querySubObject( "GetFirst()" ); while ( item ) { - <a name="x2729"></a> <a href="ntqstring.html">TQString</a> firstName = item-><a href="tqobject.html#property">property</a>( "FirstName" ).toString(); - <a href="ntqstring.html">TQString</a> lastName = item-><a href="tqobject.html#property">property</a>( "LastName" ).toString(); - <a href="ntqstring.html">TQString</a> address = item-><a href="tqobject.html#property">property</a>( "HomeAddress" ).toString(); - <a href="ntqstring.html">TQString</a> email = item-><a href="tqobject.html#property">property</a>( "Email1Address" ).toString(); + <a name="x2729"></a> <a href="tqstring.html">TQString</a> firstName = item-><a href="tqobject.html#property">property</a>( "FirstName" ).toString(); + <a href="tqstring.html">TQString</a> lastName = item-><a href="tqobject.html#property">property</a>( "LastName" ).toString(); + <a href="tqstring.html">TQString</a> address = item-><a href="tqobject.html#property">property</a>( "HomeAddress" ).toString(); + <a href="tqstring.html">TQString</a> email = item-><a href="tqobject.html#property">property</a>( "Email1Address" ).toString(); (void)new ABListViewItem( listView, firstName, lastName, address, email, item ); // the listviewitem takes ownership |