summaryrefslogtreecommitdiffstats
path: root/doc/application-walkthrough.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/application-walkthrough.doc')
-rw-r--r--doc/application-walkthrough.doc10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/application-walkthrough.doc b/doc/application-walkthrough.doc
index 9f196793..e53c25bd 100644
--- a/doc/application-walkthrough.doc
+++ b/doc/application-walkthrough.doc
@@ -4,7 +4,7 @@
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
-** This file is part of the Qt GUI Toolkit.
+** This file is part of the TQt GUI Toolkit.
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
@@ -13,7 +13,7 @@
** Alternatively you may (at your option) use any later version
** of the GNU General Public License if such license has been
** publicly approved by Trolltech ASA (or its successors, if any)
-** and the KDE Free Qt Foundation.
+** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
@@ -129,7 +129,7 @@ compile them into the binary. This is what we are doing here.
\printline ApplicationWindow::ApplicationWindow
\printuntil {
-\e ApplicationWindow inherits QMainWindow, the Qt class that provides
+\e ApplicationWindow inherits QMainWindow, the TQt class that provides
typical application main windows, with menu bars, toolbars, etc.
\printuntil QPrinter
@@ -285,7 +285,7 @@ destructor.
The only thing an \e ApplicationWindow widget needs to do in its
destructor is to delete the printer it created. All other objects are
-child widgets, which Qt will delete when appropriate.
+child widgets, which TQt will delete when appropriate.
Now our task is to implement all the slots mentioned in the header file
and used in the constructor.
@@ -425,7 +425,7 @@ Last but not least we implement the slots used by the help menu entries.
These two slots use ready-made "about" functions to provide some
information about this program and the GUI toolkit it uses. (Although you
-don't need to provide an About Qt in your programs, if you use Qt for free
+don't need to provide an About TQt in your programs, if you use TQt for free
we would appreciate it if you tell people what you're using.)
That was all we needed to write a complete, almost useful application with