summaryrefslogtreecommitdiffstats
path: root/doc/html/rot-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/rot-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/rot-example.html')
-rw-r--r--doc/html/rot-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/rot-example.html b/doc/html/rot-example.html
index be9fd0eaa..324352132 100644
--- a/doc/html/rot-example.html
+++ b/doc/html/rot-example.html
@@ -64,7 +64,7 @@ class Rot13: public <a href="tqwidget.html">TQWidget</a> {
public:
Rot13();
- <a href="ntqstring.html">TQString</a> rot13( const <a href="ntqstring.html">TQString</a> &amp; ) const;
+ <a href="tqstring.html">TQString</a> rot13( const <a href="tqstring.html">TQString</a> &amp; ) const;
private slots:
void changeLeft();
@@ -132,10 +132,10 @@ void <a name="f434"></a>Rot13::changeRight()
}
-TQString <a name="f435"></a>Rot13::rot13( const <a href="ntqstring.html">TQString</a> &amp; input ) const
+TQString <a name="f435"></a>Rot13::rot13( const <a href="tqstring.html">TQString</a> &amp; input ) const
{
- <a href="ntqstring.html">TQString</a> r = input;
-<a name="x1372"></a> int i = r.<a href="ntqstring.html#length">length</a>();
+ <a href="tqstring.html">TQString</a> r = input;
+<a name="x1372"></a> int i = r.<a href="tqstring.html#length">length</a>();
while( i-- ) {
if ( r[i] &gt;= TQChar('A') &amp;&amp; r[i] &lt;= TQChar('M') ||
r[i] &gt;= TQChar('a') &amp;&amp; r[i] &lt;= TQChar('m') )