aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/remotelinuxpackageinstaller.h
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2018-11-24 17:06:01 +0100
committerAlessandro Portale <alessandro.portale@qt.io>2018-11-28 17:47:02 +0000
commitf52f25e15054b54e7b515853418f30618a9925d1 (patch)
tree691fdc64a281bdf3ee7b35f04e8e2c973f924b51 /src/plugins/remotelinux/remotelinuxpackageinstaller.h
parent77c729bb8a315dc596d111bddabf0b510094f7cc (diff)
RemoteLinux: Modernize
modernize-* Change-Id: Ifdf0e781c63941625ca032a8e1752082f4abc3ce Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxpackageinstaller.h')
-rw-r--r--src/plugins/remotelinux/remotelinuxpackageinstaller.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/remotelinux/remotelinuxpackageinstaller.h b/src/plugins/remotelinux/remotelinuxpackageinstaller.h
index dacdf5b5ef9..25f1b34f77e 100644
--- a/src/plugins/remotelinux/remotelinuxpackageinstaller.h
+++ b/src/plugins/remotelinux/remotelinuxpackageinstaller.h
@@ -38,7 +38,7 @@ class REMOTELINUX_EXPORT AbstractRemoteLinuxPackageInstaller : public QObject
Q_OBJECT
Q_DISABLE_COPY(AbstractRemoteLinuxPackageInstaller)
public:
- ~AbstractRemoteLinuxPackageInstaller();
+ ~AbstractRemoteLinuxPackageInstaller() override;
void installPackage(const ProjectExplorer::IDevice::ConstPtr &deviceConfig,
const QString &packageFilePath, bool removePackageFile);
@@ -50,7 +50,7 @@ signals:
void finished(const QString &errorMsg = QString());
protected:
- explicit AbstractRemoteLinuxPackageInstaller(QObject *parent = 0);
+ explicit AbstractRemoteLinuxPackageInstaller(QObject *parent = nullptr);
private:
void handleConnectionError();
@@ -74,11 +74,11 @@ class REMOTELINUX_EXPORT RemoteLinuxTarPackageInstaller : public AbstractRemoteL
{
Q_OBJECT
public:
- RemoteLinuxTarPackageInstaller(QObject *parent = 0);
+ RemoteLinuxTarPackageInstaller(QObject *parent = nullptr);
private:
- QString installCommandLine(const QString &packageFilePath) const;
- QString cancelInstallationCommandLine() const;
+ QString installCommandLine(const QString &packageFilePath) const override;
+ QString cancelInstallationCommandLine() const override;
};