From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/simple-font-demo-example.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'doc/html/simple-font-demo-example.html') diff --git a/doc/html/simple-font-demo-example.html b/doc/html/simple-font-demo-example.html index 7cceac83..a5345e38 100644 --- a/doc/html/simple-font-demo-example.html +++ b/doc/html/simple-font-demo-example.html @@ -82,8 +82,8 @@ private:

/* $Id: qt/viewer.cpp   3.3.8   edited May 27 2003 $ */
 
 #include "viewer.h"
-#include <ntqstring.h>
-#include <ntqstringlist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
 #include <ntqtextview.h>
 #include <ntqpushbutton.h>
 #include <ntqlayout.h>
@@ -93,9 +93,9 @@ private:
 {
     setFontSubstitutions();
 
-    TQString greeting_heb = TQString::fromUtf8( "\327\251\327\234\327\225\327\235" );
-    TQString greeting_ru = TQString::fromUtf8( "\320\227\320\264\321\200\320\260\320\262\321\201\321\202\320\262\321\203\320\271\321\202\320\265" );
-    TQString greeting_en( "Hello" );
+    TQString greeting_heb = TQString::fromUtf8( "\327\251\327\234\327\225\327\235" );
+    TQString greeting_ru = TQString::fromUtf8( "\320\227\320\264\321\200\320\260\320\262\321\201\321\202\320\262\321\203\320\271\321\202\320\265" );
+    TQString greeting_en( "Hello" );
 
     greetings = new TQTextView( this, "textview" );
 
@@ -166,15 +166,15 @@ void Viewer::showFontInfo( TQFont
 {
     TQFontInfo info( font );
 
-    TQString messageText;
+    TQString messageText;
     messageText = "Font requested: \"" +
                   font.family() + "\" " +
-                  TQString::number( font.pointSize() ) + "pt<BR>" +
+                  TQString::number( font.pointSize() ) + "pt<BR>" +
                   "Font used: \"" +
                   info.family() + "\" " +
-                  TQString::number( info.pointSize() ) + "pt<P>";
+                  TQString::number( info.pointSize() ) + "pt<P>";
 
-    TQStringList substitutions = TQFont::substitutes( font.family() );
+    TQStringList substitutions = TQFont::substitutes( font.family() );
 
     if ( ! substitutions.isEmpty() ){
         messageText += "The following substitutions exist for " + \
@@ -196,7 +196,7 @@ void Viewer::showFontInfo( TQFont
 
 void Viewer::setFontSubstitutions()
 {
-    TQStringList substitutes;
+    TQStringList substitutes;
     substitutes.append( "Times" );
     substitutes +=  "Mincho",
     substitutes << "Arabic Newspaper" << "crox";
-- 
cgit v1.2.1