summaryrefslogtreecommitdiff
path: root/src/application.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/application.hpp')
-rw-r--r--src/application.hpp8
1 files changed, 4 insertions, 4 deletions
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<QPointer<PluginLoader>> RekonqPluginList;
-typedef QList<QPointer<RekonqWindow>> RekonqWindowList;
-typedef QList<QPointer<RekonqView>> RekonqViewList;
+using RekonqPluginList = QList<QPointer<PluginLoader>>;
+using RekonqWindowList = QList<QPointer<RekonqWindow>>;
+using RekonqViewList = QList<QPointer<RekonqView>>;
// ---------------------------------------------------------------------------------------------------------------
@@ -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;