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

@@ -123,7 +123,7 @@ private:
}
};
class LinuxPortsGatheringMethod : public ProjectExplorer::PortsGatheringMethod
class LinuxPortsGatheringMethod : public PortsGatheringMethod
{
QByteArray commandLine(QAbstractSocket::NetworkLayerProtocol protocol) const
{
@@ -175,7 +175,7 @@ QString LinuxDevice::displayType() const
return tr("Generic Linux");
}
ProjectExplorer::IDeviceWidget *LinuxDevice::createWidget()
IDeviceWidget *LinuxDevice::createWidget()
{
return new GenericLinuxDeviceConfigurationWidget(sharedFromThis());
}
@@ -224,7 +224,7 @@ LinuxDevice::Ptr LinuxDevice::create()
return Ptr(new LinuxDevice);
}
ProjectExplorer::IDevice::Ptr LinuxDevice::clone() const
IDevice::Ptr LinuxDevice::clone() const
{
return Ptr(new LinuxDevice(*this));
}