Skip to content
  • Orgad Shaneh's avatar
    VCS: Remove unneeded qualifications · 620d1c36
    Orgad Shaneh authored
    
    
    Mostly done using the following ruby script:
    Dir.glob('**/*.cpp').each { |file|
      next if file =~ %r{src/shared/qbs|/qmljs/}
      s = File.read(file)
      s.scan(/^using namespace (.*);$/) {
        ns = $1
        t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m|
          before = $1
          char = $2
          if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/
            m
          else
            before + char
          end
        }
        if t != s
          puts file
          File.open(file, 'w').write(t)
        end
      }
    }
    
    Change-Id: I061c7bdcade96961aed226a8348f8ab07ee95f5f
    Reviewed-by: default avatarTobias Hunger <tobias.hunger@theqtcompany.com>
    620d1c36