diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-05-30 21:32:04 +0200 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-05-30 21:32:04 +0200 |
| commit | 1dc98e3af2f1c2296d4691c578e70d0ddeb810a1 (patch) | |
| tree | 84d1538f279b1fa9c5defc0b0108440734013b24 /src/installationmanager.h | |
| parent | e9595ec91a91c00b1fda58305796591b510efdbf (diff) | |
Small update to installation manager following uibase changes.
Diffstat (limited to 'src/installationmanager.h')
| -rw-r--r-- | src/installationmanager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/installationmanager.h b/src/installationmanager.h index bdc9eafc..cb355641 100644 --- a/src/installationmanager.h +++ b/src/installationmanager.h @@ -88,12 +88,12 @@ public: /** * @return true if the installation was canceled **/ - bool wasCancelled(); + bool wasCancelled() const; /** * @return true if an installation is currently in progress **/ - bool isRunning(); + bool isRunning() const; /** * @brief retrieve a string describing the specified error code @@ -111,9 +111,9 @@ public: void registerInstaller(MOBase::IPluginInstaller *installer); /** - * @return list of file extensions we can install + * @return the extensions of archives supported by this installation manager. */ - QStringList getSupportedExtensions() const; + QStringList getSupportedExtensions() const override; /** * @brief Extract the specified file from the currently opened archive to a temporary location. |
