summaryrefslogtreecommitdiffstats
path: root/doc/html/grapher-nsplugin-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-06-06 13:44:12 +0900
committerMichele Calgaro <[email protected]>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/grapher-nsplugin-example.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-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.html6
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&lt;Datum&gt;&amp; graphData()=0;
@@ -550,7 +550,7 @@ void <a name="f574"></a>Grapher::consumeLine()
<a href="tqptrlist.html">TQPtrList</a>&lt;ColType&gt; 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 &gt;&gt; typestr &gt;&gt; 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 &gt;&gt; *value &gt;&gt; ws;
rowdata[col].str = value;
break;