forked from qt-creator/qt-creator
Aggregation/Utils/ExtensionSystem: Make member functions const/static
readability-make-member-function-const finds lots of member functions that could be made const. This change just picks getter functions that really should be const. readability-convert-member-functions-to-static finds non-static member functions which do not access this. This change turns most of them into static ones, but leaves some non static to keep the class API consistent. readability-static-accessed-through-instance fixes the places where the originally non-static, now static functions were called through instance. Change-Id: I8cf16c01f7988a7c9d073b5f8ede6a9706b94fb0 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -85,8 +85,8 @@ public:
|
||||
static void setSystemEnvironment(const Environment &environment); // don't use at all!!!
|
||||
|
||||
private:
|
||||
FilePath searchInDirectory(const QStringList &execs, const FilePath &directory,
|
||||
QSet<FilePath> &alreadyChecked) const;
|
||||
static FilePath searchInDirectory(const QStringList &execs, const FilePath &directory,
|
||||
QSet<FilePath> &alreadyChecked);
|
||||
};
|
||||
|
||||
class QTCREATOR_UTILS_EXPORT EnvironmentProvider
|
||||
|
||||
Reference in New Issue
Block a user