diff options
author | Michele Calgaro <[email protected]> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/grapher-nsplugin-example.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 <[email protected]>
Diffstat (limited to 'doc/html/grapher-nsplugin-example.html')
-rw-r--r-- | doc/html/grapher-nsplugin-example.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/grapher-nsplugin-example.html b/doc/html/grapher-nsplugin-example.html index 5ed08a695..3c8011ed3 100644 --- a/doc/html/grapher-nsplugin-example.html +++ b/doc/html/grapher-nsplugin-example.html @@ -105,7 +105,7 @@ public: union Datum { double dbl; - <a href="ntqstring.html">TQString</a>* str; + <a href="tqstring.html">TQString</a>* str; }; virtual TQPtrList<Datum>& graphData()=0; @@ -550,7 +550,7 @@ void <a name="f574"></a>Grapher::consumeLine() <a href="tqptrlist.html">TQPtrList</a><ColType> typelist; typelist.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE); do { - <a href="ntqstring.html">TQString</a> typestr; + <a href="tqstring.html">TQString</a> typestr; ts >> typestr >> ws; ColType* t = 0; if ( typestr == "num" ) { @@ -576,7 +576,7 @@ void <a name="f574"></a>Grapher::consumeLine() break; } case Label: { - <a href="ntqstring.html">TQString</a>* value = new <a href="ntqstring.html">TQString</a>; + <a href="tqstring.html">TQString</a>* value = new <a href="tqstring.html">TQString</a>; ts >> *value >> ws; rowdata[col].str = value; break; |