diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:25:51 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:25:51 -0600 |
commit | 10d461f8a8b11ea740680361c20c4a378811e8a4 (patch) | |
tree | fb43cedf9cd3b06209af237c3cbbc9c0a8fb0896 /postproc | |
parent | 23c5b612d95f27d80c70adef92890955574a94bf (diff) | |
download | pytde-10d461f8a8b11ea740680361c20c4a378811e8a4.tar.gz pytde-10d461f8a8b11ea740680361c20c4a378811e8a4.zip |
Additional kde to tde renaming
Diffstat (limited to 'postproc')
-rwxr-xr-x | postproc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -184,12 +184,12 @@ def qtNoTr (filelist): def shpix (): # if concatenated, the sip*.cpp file doesn't exist - fn = ['sipkdeuiKSharedPixmap.cpp'] + fn = ['siptdeuiKSharedPixmap.cpp'] if not os.path.exists (os.path.join (opPath, fn [0])): files = os.listdir (opPath) fn = [] for file in files: - if string.find (file, "kdeuipart") >= 0 and file [-4:] == ".cpp": + if string.find (file, "tdeuipart") >= 0 and file [-4:] == ".cpp": fn.append (file) if not fn: @@ -369,9 +369,9 @@ def appQuit (filelist): return True def fixQVariant (): - infile = os.path.join (opPath, "sipkdecorecmodule.cpp") + infile = os.path.join (opPath, "siptdecorecmodule.cpp") if not os.path.exists (infile): - infile = os.path.join (opPath, "sipkdecorepart0.cpp") + infile = os.path.join (opPath, "siptdecorepart0.cpp") if not os.path.exists (infile): return TRUE @@ -379,7 +379,7 @@ def fixQVariant (): n = open (infile + ".new", "w") looking = True for line in m: - if looking and line.find ("sipAPIkdecore.h") > 0: + if looking and line.find ("sipAPItdecore.h") > 0: n.write (line) n.write ('\n#include "sipqtQVariant.h"\n\n') looking = False |