Rename a number of classes to enhance compatibility with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent a92c024e16
commit bceaed59bf

@ -25,9 +25,9 @@ from kdeappview import *
description = "A KDE Application"
version = "0.1";
class KdeApp(KMainWindow):
class KdeApp(TDEMainWindow):
def __init__(self):
KMainWindow.__init__(self,None,"KdeApp")
TDEMainWindow.__init__(self,None,"KdeApp")
self._view = KdeAppView(self)
self._printer = None
@ -35,7 +35,7 @@ class KdeApp(KMainWindow):
# accept dnd
self.setAcceptDrops(True)
# tell the KMainWindow that this is indeed the main widget
# tell the TDEMainWindow that this is indeed the main widget
self.setCentralWidget(self._view)
# then, setup our actions
@ -94,7 +94,7 @@ class KdeApp(KMainWindow):
# this doesn't do anything useful. it's just here to illustrate
# how to insert a custom menu and menu item
custom = KAction(i18n("Cus&tom Menuitem"), KShortcut(),
custom = TDEAction(i18n("Cus&tom Menuitem"), TDEShortcut(),
self.optionsPreferences,
self.actionCollection(), "custom_action")
self.createGUI()
@ -258,7 +258,7 @@ def main():
# see if we are starting with session management
if kapp.isRestored():
n = 1
while KMainWindow.canBeRestored(n):
while TDEMainWindow.canBeRestored(n):
KdeApp().restore(n)
n += 1
else:

Loading…
Cancel
Save