RemoteLinux: Remove unneeded qualifications

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: Id48e46fdfed83b82071551f4375fab3310ed1f6e
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
Orgad Shaneh
2015-02-03 23:51:02 +02:00
committed by Orgad Shaneh
parent b197566eec
commit 3f1fd49c71
15 changed files with 34 additions and 34 deletions

View File

@@ -37,14 +37,14 @@ namespace RemoteLinux {
using namespace Internal;
RemoteLinuxDeployConfiguration::RemoteLinuxDeployConfiguration(ProjectExplorer::Target *target,
RemoteLinuxDeployConfiguration::RemoteLinuxDeployConfiguration(Target *target,
const Core::Id id, const QString &defaultDisplayName)
: DeployConfiguration(target, id)
{
setDefaultDisplayName(defaultDisplayName);
}
RemoteLinuxDeployConfiguration::RemoteLinuxDeployConfiguration(ProjectExplorer::Target *target,
RemoteLinuxDeployConfiguration::RemoteLinuxDeployConfiguration(Target *target,
RemoteLinuxDeployConfiguration *source)
: DeployConfiguration(target, source)
{ }