summaryrefslogtreecommitdiff
path: root/app-text/kbibtex/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-02-27 22:02:09 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-02-27 22:02:09 +0000
commita87296ad796f00f3bba27339f6efe11b9a384e23 (patch)
tree1a47aa193935e1eb80c6ce1c7ececdcf9d44dfb3 /app-text/kbibtex/files
parent724cccb689f2076a398ede6845749926c86ea647 (diff)
gentoo auto-resync : 27:02:2023 - 22:02:09
Diffstat (limited to 'app-text/kbibtex/files')
-rw-r--r--app-text/kbibtex/files/kbibtex-0.9.2-fix-crash-w-newer-Qt.patch28
-rw-r--r--app-text/kbibtex/files/kbibtex-0.9.2-fix-creation-w-url-from-user-input.patch28
2 files changed, 0 insertions, 56 deletions
diff --git a/app-text/kbibtex/files/kbibtex-0.9.2-fix-crash-w-newer-Qt.patch b/app-text/kbibtex/files/kbibtex-0.9.2-fix-crash-w-newer-Qt.patch
deleted file mode 100644
index 91cc51f9303c..000000000000
--- a/app-text/kbibtex/files/kbibtex-0.9.2-fix-crash-w-newer-Qt.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
-From: Albert Astals Cid <aacid@kde.org>
-Date: Thu, 8 Apr 2021 22:07:15 +0200
-Subject: [PATCH] Fix crash with newer Qt versions
-
-Assign m_internalModel before calling into
-QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
----
- src/gui/file/sortfilterfilemodel.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
-index 73707cec..87657aa2 100644
---- a/src/gui/file/sortfilterfilemodel.cpp
-+++ b/src/gui/file/sortfilterfilemodel.cpp
-@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
-
- void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
- {
-- QSortFilterProxyModel::setSourceModel(model);
- m_internalModel = dynamic_cast<FileModel *>(model);
-+ QSortFilterProxyModel::setSourceModel(model);
- }
-
- FileModel *SortFilterFileModel::fileSourceModel() const
---
-GitLab
-
diff --git a/app-text/kbibtex/files/kbibtex-0.9.2-fix-creation-w-url-from-user-input.patch b/app-text/kbibtex/files/kbibtex-0.9.2-fix-creation-w-url-from-user-input.patch
deleted file mode 100644
index fdc42d97810b..000000000000
--- a/app-text/kbibtex/files/kbibtex-0.9.2-fix-creation-w-url-from-user-input.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-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
-