diff options
Diffstat (limited to 'postproc')
-rwxr-xr-x | postproc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -327,7 +327,7 @@ def appQuit (filelist): tmp.write (buff [i] + "\nfrom qt import TQCloseEvent") i = i + 1 - while (i < nLines) and (string.find (buff [i], "class KApplication") < 0): + while (i < nLines) and (string.find (buff [i], "class TDEApplication") < 0): tmp.write (buff [i]) i = i + 1 @@ -343,7 +343,7 @@ def appQuit (filelist): tmp.write (\ """\tdef quit (self): -\t\tk = KApplication.kApplication () +\t\tk = TDEApplication.kApplication () \t\te = TQCloseEvent () \t\tfor w in k.topLevelWidgets (): |