summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-05-10 19:04:50 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-05-10 19:04:50 -0500
commit96373c26892ef84132420a02ee7cf96f34a11810 (patch)
tree9ef192a9a915e7f091de60baa9160a927efca59a /doc
parent46d5d5150c04edf32c2ac900cee80d04f90d0929 (diff)
downloadtdevelop-96373c26892ef84132420a02ee7cf96f34a11810.tar.gz
tdevelop-96373c26892ef84132420a02ee7cf96f34a11810.zip
Branding cleanup: KDE -> TDE.
Diffstat (limited to 'doc')
-rw-r--r--doc/kde_app_devel/index.docbook6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/kde_app_devel/index.docbook b/doc/kde_app_devel/index.docbook
index 54dd8a8b..35602c78 100644
--- a/doc/kde_app_devel/index.docbook
+++ b/doc/kde_app_devel/index.docbook
@@ -184,7 +184,7 @@ are able to interact with the file manager via drag'n drop, offer session manage
features offered by the KDE libraries are used. Both, the Qt toolkit and the KDE libraries, are implemented
in the C++ programming language; therefore applications that make use of these libraries are also mostly
written in C++. In the following chapter, we'll make a short trip through the libraries to see what already
-is provided and how Qt and KDE applications are created in general.
+is provided and how Qt and TDE applications are created in general.
</para>
<para>
Both, the Qt toolkit and the KDE libraries, are implemented in the C++ programming language;
@@ -522,7 +522,7 @@ and the <ulink url="doc.trolltech.com">Qt online reference</ulink>.
<sect2 id="c2s3s1">
<title>The KDE 3.x libraries</title>
<para>
-The main KDE libraries you'll be using for creating your own KDE applications are:
+The main KDE libraries you'll be using for creating your own TDE applications are:
<itemizedlist>
<listitem><para>
the tdecore library, containing all classes that are non-visible elements to provide application functionality
@@ -939,7 +939,7 @@ Let's have a look at the constructor and see how this instance is called
</para>
<para>
Notice that <classname>KScribble</classname> inherits the <classname>KMainWindow</classname> class - a
-commonly used base class for KDE applications. We initialize a class called <classname>KScribbleView</classname>
+commonly used base class for TDE applications. We initialize a class called <classname>KScribbleView</classname>
as our central widget, create a <classname>KStatusBar</classname> via the <methodname>statusBar()</methodname>
method (line 16), and connect some signals and slots together.
</para>