diff options
Diffstat (limited to 'examples/uikmdi.py')
-rw-r--r-- | examples/uikmdi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/uikmdi.py b/examples/uikmdi.py index 32735ce..2b26dde 100644 --- a/examples/uikmdi.py +++ b/examples/uikmdi.py @@ -29,7 +29,7 @@ import os import sys from qt import SIGNAL, TQVBoxLayout, TQLabel -from tdecore import i18n, KAboutData, TDEApplication, KGlobal, KIcon, TDECmdLineArgs +from tdecore import i18n, TDEAboutData, TDEApplication, KGlobal, KIcon, TDECmdLineArgs from tdeui import KDockWidget, KListBox, KStdAction try: @@ -189,11 +189,11 @@ if __name__ == '__main__': aname = 'PyKDE KMDI Sample' desc = 'A Simple PyKDE KMDI Sample' ver = '1.0' - lic = KAboutData.License_GPL + lic = TDEAboutData.License_GPL author = 'Troy Melhase' authormail = 'troy@gci.net' - about = KAboutData(aname, aname, ver, desc, lic, '%s (c) 2004' % authormail) + about = TDEAboutData(aname, aname, ver, desc, lic, '%s (c) 2004' % authormail) about.addAuthor(author, 'hi, mom!', authormail) about.addAuthor ('Jim Bublitz', 'For PyKDE', 'jbublitz@nwinternet.com') TDECmdLineArgs.init(sys.argv, about) |