summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/pykde-sampler/HOWTO.samples2
-rw-r--r--examples/pykde-sampler/about.py4
-rw-r--r--examples/uimodules/uidialogs.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/pykde-sampler/HOWTO.samples b/examples/pykde-sampler/HOWTO.samples
index 0ccf630..2b20c52 100644
--- a/examples/pykde-sampler/HOWTO.samples
+++ b/examples/pykde-sampler/HOWTO.samples
@@ -33,7 +33,7 @@ In side the module, add the following:
example: ('tdeui', 'KAboutDialog')
If specified, this sequence should contain two items, first item
- name of pykde module, second item name of class within the module.
+ name of pytde module, second item name of class within the module.
These two values are used to form the URL to the documentation for
the sample.
diff --git a/examples/pykde-sampler/about.py b/examples/pykde-sampler/about.py
index ae35b99..108194b 100644
--- a/examples/pykde-sampler/about.py
+++ b/examples/pykde-sampler/about.py
@@ -8,7 +8,7 @@ from os.path import dirname, join
from tdecore import KAboutData
-appName = 'pykdesampler'
+appName = 'pytdesampler'
progName = 'PyKDE Sampler'
authorName = 'Troy Melhase'
authorEmail = bugsEmailAddress = '[email protected]'
@@ -16,7 +16,7 @@ version = '0.1'
shortDescription = 'The PyKDE Sampler'
licenseType = KAboutData.License_GPL_V2
copyrightStatement = '(c) 2006, %s' % (authorName, )
-homePageAddress = 'http://www.riverbankcomputing.co.uk/pykde/'
+homePageAddress = 'http://www.riverbankcomputing.co.uk/pytde/'
aboutText = ("The application sampler for PyKDE.")
contributors = [] # module-level global for keeping the strings around; intentional
diff --git a/examples/uimodules/uidialogs.py b/examples/uimodules/uidialogs.py
index 1c85fbe..ba03a9a 100644
--- a/examples/uimodules/uidialogs.py
+++ b/examples/uimodules/uidialogs.py
@@ -130,7 +130,7 @@ def dlgKAboutDialog (parent):
dlg.setTitle ("UISampler for PyKDE")
dlg.setAuthor ("Jim Bublitz", "[email protected]", "http://www.riverbankcomputing.co.uk",\
"\n\nPyKDE -- Python bindings\n\tfor KDE")
- dlg.addContributor ("PyKDE list", "[email protected]", TQString.null, TQString.null)
+ dlg.addContributor ("PyKDE list", "[email protected]", TQString.null, TQString.null)
dlg.show ()