summary refs log tree commit diff
path: root/src/timeline/InputBar.cpp
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 /src/timeline/InputBar.cpp
parentDocument Safari workaround (diff)
downloadnheko-c5edd21e6b83c9ccb2c50221346eb1a97086ceb1.tar.xz
Try to make clang-format happy
Diffstat (limited to '')
-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;
                    }