summaryrefslogtreecommitdiffstats
path: root/doc/layout.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/layout.doc')
-rw-r--r--doc/layout.doc12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/layout.doc b/doc/layout.doc
index 13eb5862..a57f101f 100644
--- a/doc/layout.doc
+++ b/doc/layout.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:
@@ -41,7 +41,7 @@
\title Layout Classes
-The Qt layout system provides a simple and powerful way of specifying
+The TQt layout system provides a simple and powerful way of specifying
the layout of child widgets.
By specifying the logical layout once, you get the following benefits:
@@ -64,7 +64,7 @@ they're easy to understand and use.
The disadvantage of hand-written layout code is that it isn't very
convenient when you're experimenting with the design of a form and you
have to go through the compile, link and run cycle for each change.
-Our solution is \link designer-manual.book Qt Designer\endlink, a GUI
+Our solution is \link designer-manual.book TQt Designer\endlink, a GUI
visual design tool which makes it fast and easy to experiment with
layouts and which generates the C++ layout code for you.
@@ -156,7 +156,7 @@ proportion (but never less than their minimum size hint), e.g.
\section1 QLayout subclassing
If you need more control over the layout, use a \link QLayout
-QLayout\endlink subclass. The layout classes included in Qt are \link
+QLayout\endlink subclass. The layout classes included in TQt are \link
QGridLayout QGridLayout\endlink and \link QBoxLayout
QBoxLayout\endlink. (\link QHBoxLayout QHBoxLayout\endlink and \link
QVBoxLayout QVBoxLayout\endlink are trivial subclasses of QBoxLayout,
@@ -256,7 +256,7 @@ of the widget, and it is used by QLayout subclasses that do not
support heightForWidth() (both QGridLayout and QBoxLayout support it).
For further guidance when implementing these functions, see their
-implementations in existing Qt classes that have similar layout
+implementations in existing TQt classes that have similar layout
requirements to your new widget.
\section1 Manual Layout