summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-01-09 05:00:22 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-01-09 05:00:22 +0100
commitc5edd21e6b83c9ccb2c50221346eb1a97086ceb1 (patch)
treec14d2a0cb1391af5d6a6a7acb1e730070843824c
parent008f71cdbdc4e0c80fa05937b467ddb7fc0bcd9f (diff)
Try to make clang-format happy
-rw-r--r--src/timeline/InputBar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp
index 333f49b2..ad4a50eb 100644
--- a/src/timeline/InputBar.cpp
+++ b/src/timeline/InputBar.cpp
@@ -179,7 +179,7 @@ InputBar::insertMimeData(const QMimeData *md)
// NOTE(Nico): Safari, when copying the url, sends a url list. Since we only paste
// local files, skip remote ones.
[&md] {
- for (const auto &u : md->urls()) {
+ for (auto &&u : md->urls()) {
if (u.isLocalFile())
return true;
}