From 5eff302078523f50224f4e310b252c8cbb7c2210 Mon Sep 17 00:00:00 2001 From: aqua Date: Sat, 10 Sep 2022 19:50:59 +0300 Subject: Fix some clang-tidy warnings --- src/application.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/application.hpp') diff --git a/src/application.hpp b/src/application.hpp index cc38bda9..f435ef8d 100644 --- a/src/application.hpp +++ b/src/application.hpp @@ -23,9 +23,9 @@ class RekonqWindow; class PluginLoader; class RekonqSettings; -typedef QList> RekonqPluginList; -typedef QList> RekonqWindowList; -typedef QList> RekonqViewList; +using RekonqPluginList = QList>; +using RekonqWindowList = QList>; +using RekonqViewList = QList>; // --------------------------------------------------------------------------------------------------------------- @@ -36,7 +36,7 @@ class Application : public SingleApplication { Q_OBJECT public: - Application(int &argc, char *argv[]); + Application(int &argc, char *argv[]); // NOLINT(modernize-avoid-c-arrays) ~Application() override; REKONQ_TEST_VIRTUAL bool registerPlugin(const QString &path) REKONQ_TEST_PURE; -- cgit v1.2.1