Cleaning up

Removed the patch file.
Updated the changelog.
backports/focal
apt-ghetto 5 years ago
parent df565377ca
commit 8d332ae0ff

2
debian/changelog vendored

@ -1,6 +1,8 @@
lxqt-qtplugin (0.14.0-3ubuntu2) UNRELEASED; urgency=medium
* Removed load-versioned-libfm-qt.patch
* Added libfm-qt-dev as build dependency
* Added libfm-qt6 as dependency
-- apt-ghetto <apt-ghetto@protonmail.com> Thu, 09 May 2019 18:27:21 +0200

@ -1,20 +0,0 @@
Description: Load the versioned library
Loading libfm-qt.so would not be wise, it would introduce a dependency
to libfm-qt-dev. So hard patching to libfm-qt.so.6 will be fine for
Buster - we will find a better solution upstream for the next release.
Author: Alf Gaida <agaida@siduction.org>
---
Bug-Debian: https://bugs.debian.org/927905
--- lxqt-qtplugin-0.14.0.orig/src/lxqtplatformtheme.cpp
+++ lxqt-qtplugin-0.14.0/src/lxqtplatformtheme.cpp
@@ -239,7 +239,7 @@ QPlatformDialogHelper *LXQtPlatformTheme
// The createFileDialogHelper() method is dynamically loaded from libfm-qt on demand
if(createFileDialogHelper == nullptr) {
// try to dynamically load libfm-qt.so
- QLibrary libfmQtLibrary{QLatin1String("libfm-qt")};
+ QLibrary libfmQtLibrary{QLatin1String("libfm-qt.so.6")};
libfmQtLibrary.load();
if(!libfmQtLibrary.isLoaded()) {
return nullptr;
Loading…
Cancel
Save