From 3d1fa8562bf693237a1a76918b4487cca3e2e356 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 21 Jan 2013 18:37:56 -0600 Subject: Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4 --- templates/basic/basicapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'templates/basic/basicapp.py') diff --git a/templates/basic/basicapp.py b/templates/basic/basicapp.py index b5b5f62..01ce1af 100644 --- a/templates/basic/basicapp.py +++ b/templates/basic/basicapp.py @@ -30,7 +30,7 @@ copyright holder. import sys from qt import SIGNAL -from tdecore import TDEApplication, KCmdLineArgs, KAboutData +from tdecore import TDEApplication, TDECmdLineArgs, KAboutData from tdeui import KMainWindow class MainWin (KMainWindow): @@ -49,7 +49,7 @@ aboutData = KAboutData ("", "",\ aboutData.addAuthor ("author1", "whatever they did", "email@somedomain") aboutData.addAuthor ("author2", "they did something else", "another@email.address") -KCmdLineArgs.init (sys.argv, aboutData) +TDECmdLineArgs.init (sys.argv, aboutData) app = TDEApplication () mainWindow = MainWin (None, "main window") -- cgit v1.2.3