Rename KApplication to TDEApplication to avoid conflicts with KDE4

pull/1/head
Timothy Pearson 11 years ago
parent 12c7c0971e
commit 083a07ada0

@ -150,7 +150,7 @@ def main():
global kapp
about_data = AboutData()
KCmdLineArgs.init(sys.argv,about_data)
kapp = KApplication()
kapp = TDEApplication()
myapp = KcontrolModuleApp()
myapp.exec_loop()
@ -158,7 +158,7 @@ def main():
# Factory function for KControl
def create_kcontrol_module(parent,name):
global kapp
kapp = KApplication.kApplication()
kapp = TDEApplication.kApplication()
return KcontrolModuleApp(parent, name)
############################################################################

@ -250,7 +250,7 @@ def main():
aboutdata.addAuthor("AUTHOR", None, "your@email.com")
KCmdLineArgs.init(sys.argv,aboutdata)
KCmdLineArgs.addCmdLineOptions(options)
kapp = KApplication()
kapp = TDEApplication()
# register ourselves as a dcop client
kapp.dcopClient().registerAs(kapp.name(), False)

@ -41,7 +41,7 @@ def main():
aboutdata.addAuthor("AUTHOR", None, "your@email.com")
KCmdLineArgs.init(sys.argv,aboutdata)
#KCmdLineArgs.addCmdLineOptions(options)
kapp = KApplication()
kapp = TDEApplication()
dialog = KDEUtilityDialog()
kapp.setMainWidget(dialog)

Loading…
Cancel
Save