Skip to content
Snippets Groups Projects
Commit b80b01cb authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

replace more QString c'tors

used script:
    t = re.sub(r'new QString\(("[^"]*?")\)', r'###NEW(\1)', t)
    t = re.sub(r'QString\(("[^"]*?")\)(\s*\+\s*)', r'###ADD(\1)\2', t)
    t = re.sub(r'QString\(("[^"]*?")\)(\s*\.)', r'###ADD(\1)\2', t)
    t = re.sub(r'QString\(("[^"]*?")\)', r'\1', t)
    t = re.sub(r'###NEW\(("[^"]*?")\)', r'new QString(\1)', t)
    t = re.sub(r'###ADD\(("[^"]*?")\)', r'QString(\1)', t)
parent 6968c995
No related branches found
No related tags found
No related merge requests found
Showing
with 29 additions and 29 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment