blob: fdc42d97810b6b193a94dfcafbb3b3cbb5cbd750 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
From 1153930536abe9f0331acef67dc40b18210eb07e Mon Sep 17 00:00:00 2001
From: Thomas Fischer <fischer@unix-ag.uni-kl.de>
Date: Sat, 1 Oct 2022 23:15:52 +0200
Subject: [PATCH] Fix creation of URL from user input
... when opening a document associated with a bibliographic entry.
BUG: 459150
---
src/parts/part.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/parts/part.cpp b/src/parts/part.cpp
index 5324647f..9dc35d1c 100644
--- a/src/parts/part.cpp
+++ b/src/parts/part.cpp
@@ -914,7 +914,7 @@ void KBibTeXPart::elementViewDocumentMenu(QObject *obj)
QString text = static_cast<QAction *>(obj)->data().toString(); ///< only a QAction will be passed along
/// Guess mime type for url to open
- QUrl url(text);
+ QUrl url{QUrl::fromUserInput(text)};
QMimeType mimeType = FileInfo::mimeTypeForUrl(url);
const QString mimeTypeName = mimeType.name();
/// Ask KDE subsystem to open url in viewer matching mime type
--
GitLab
|