Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-08-12 16:23:11 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-08-12 19:18:57 +0300
commitd58ec4bf706515ce74f8f63aa284b867566fd9e7 (patch)
tree6349f1c16cbc37cbb86fd92f64068a512d7dd2ad /shell_integration
parent7bb54e34d77f03f5915715137cc14761e4815fc9 (diff)
Enable the modernize-use-using check on clang-tidy
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'shell_integration')
-rw-r--r--shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp b/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp
index d89aa9174..f11e7ac0b 100644
--- a/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp
+++ b/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp
@@ -30,7 +30,7 @@ class OwncloudDolphinPlugin : public KOverlayIconPlugin
Q_PLUGIN_METADATA(IID "com.owncloud.ovarlayiconplugin" FILE "ownclouddolphinoverlayplugin.json")
Q_OBJECT
- typedef QHash<QByteArray, QByteArray> StatusMap;
+ using StatusMap = QHash<QByteArray, QByteArray>;
StatusMap m_status;
public: