diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-09 05:00:22 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-09 05:00:22 +0100 |
commit | c5edd21e6b83c9ccb2c50221346eb1a97086ceb1 (patch) | |
tree | c14d2a0cb1391af5d6a6a7acb1e730070843824c /src/timeline/InputBar.cpp | |
parent | Document Safari workaround (diff) | |
download | nheko-c5edd21e6b83c9ccb2c50221346eb1a97086ceb1.tar.xz |
Try to make clang-format happy
Diffstat (limited to '')
-rw-r--r-- | src/timeline/InputBar.cpp | 2 |
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; } |