summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:25:51 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:25:51 -0600
commit10d461f8a8b11ea740680361c20c4a378811e8a4 (patch)
treefb43cedf9cd3b06209af237c3cbbc9c0a8fb0896 /postproc
parent23c5b612d95f27d80c70adef92890955574a94bf (diff)
downloadpytde-10d461f8a8b11ea740680361c20c4a378811e8a4.tar.gz
pytde-10d461f8a8b11ea740680361c20c4a378811e8a4.zip
Additional kde to tde renaming
Diffstat (limited to 'postproc')
-rwxr-xr-xpostproc10
1 files changed, 5 insertions, 5 deletions
diff --git a/postproc b/postproc
index 754e7ec..5833314 100755
--- a/postproc
+++ b/postproc
@@ -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