diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/application-walkthrough.doc | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip |
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/application-walkthrough.doc')
-rw-r--r-- | doc/application-walkthrough.doc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/application-walkthrough.doc b/doc/application-walkthrough.doc index 841285661..0e187654e 100644 --- a/doc/application-walkthrough.doc +++ b/doc/application-walkthrough.doc @@ -48,7 +48,7 @@ TQPopupMenu, \l TQToolBar and \l TQStatusBar - classes that every modern application window tends to use. (See also \link tutorial2.html Tutorial #2\endlink.) -It also illustrates some aspects of \l QWhatsThis (for simple help) and a +It also illustrates some aspects of \l TQWhatsThis (for simple help) and a typical \c main() using \l QApplication. Finally, it shows a typical print function based on \l TQPrinter. @@ -368,10 +368,10 @@ tool button. We present the user with the print setup dialog, and abandon printing if they cancel. -We create a QSimpleRichText object and give it the text. This object +We create a TQSimpleRichText object and give it the text. This object is able to format the text nicely as one long page. We achieve pagination by printing one paper page's worth of text from the -QSimpleRichText page at a time. +TQSimpleRichText page at a time. Now let's see what happens when a user wishes to \e close() |