From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro <michele.calgaro@yahoo.it> Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> --- doc/html/rot-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/rot-example.html') 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> & ) const; + <a href="tqstring.html">TQString</a> rot13( const <a href="tqstring.html">TQString</a> & ) 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> & input ) const +TQString <a name="f435"></a>Rot13::rot13( const <a href="tqstring.html">TQString</a> & 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] >= TQChar('A') && r[i] <= TQChar('M') || r[i] >= TQChar('a') && r[i] <= TQChar('m') ) -- cgit v1.2.1