diff options
Diffstat (limited to 'examples/pytde-sampler/about.py')
| -rw-r--r-- | examples/pytde-sampler/about.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/pytde-sampler/about.py b/examples/pytde-sampler/about.py index 108194b..f675b1c 100644 --- a/examples/pytde-sampler/about.py +++ b/examples/pytde-sampler/about.py @@ -1,11 +1,11 @@ #!/usr/bin/env python """ About the PyKDE Sampler -Defines the 'about' function to create a KAboutData instance for the +Defines the 'about' function to create a TDEAboutData instance for the sampler application. """ from os.path import dirname, join -from tdecore import KAboutData +from tdecore import TDEAboutData appName = 'pytdesampler' @@ -14,7 +14,7 @@ authorName = 'Troy Melhase' authorEmail = bugsEmailAddress = 'troy@gci.net' version = '0.1' shortDescription = 'The PyKDE Sampler' -licenseType = KAboutData.License_GPL_V2 +licenseType = TDEAboutData.License_GPL_V2 copyrightStatement = '(c) 2006, %s' % (authorName, ) homePageAddress = 'http://www.riverbankcomputing.co.uk/pytde/' aboutText = ("The application sampler for PyKDE.") @@ -22,10 +22,10 @@ contributors = [] # module-level global for keeping the strings around; intentio def about(): - """ creates KAboutData instance for the app + """ creates TDEAboutData instance for the app """ - about = KAboutData( + about = TDEAboutData( appName, progName, version, |
