From 6752cd35e26b9c09d0143e1f940092c945549fe0 Mon Sep 17 00:00:00 2001 From: "Thomas (nezza-_-) Roth" Date: Wed, 6 Dec 2017 17:34:35 +0100 Subject: [PATCH] Fix style of last commit. --- src/dialogs/NewFileDialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dialogs/NewFileDialog.cpp b/src/dialogs/NewFileDialog.cpp index a51acc78..8277aaeb 100644 --- a/src/dialogs/NewFileDialog.cpp +++ b/src/dialogs/NewFileDialog.cpp @@ -231,7 +231,8 @@ void NewFileDialog::dragEnterEvent(QDragEnterEvent *event) void NewFileDialog::dropEvent(QDropEvent *event) { // Accept drag & drop events only if they provide a URL - if(event->mimeData()->urls().count() == 0) { + if(event->mimeData()->urls().count() == 0) + { qWarning() << "No URL in drop event, ignoring it."; return; }