summaryrefslogtreecommitdiff
path: root/x11-wm/obconf-qt/files/patch-src_theme.cpp
diff options
context:
space:
mode:
authorJesper Schmitz Mouridsen <jsm@FreeBSD.org>2019-03-28 17:59:33 +0000
committerJesper Schmitz Mouridsen <jsm@FreeBSD.org>2019-03-28 17:59:33 +0000
commit0f8e28c12e469870992158896963ee2faa40c239 (patch)
tree2e9eaf3c10f8a452ca373d484cab9d6c2788cc79 /x11-wm/obconf-qt/files/patch-src_theme.cpp
parentUpdate distinfo to Python 3.5.7 (diff)
Upgrade the LXQt desktop environment to 0.14.0
Upstream announcement https://forum.lxqt.org/t/release-lxqt-0-14-0/572 Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19056
Notes
Notes: svn path=/head/; revision=497047
Diffstat (limited to 'x11-wm/obconf-qt/files/patch-src_theme.cpp')
-rw-r--r--x11-wm/obconf-qt/files/patch-src_theme.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/x11-wm/obconf-qt/files/patch-src_theme.cpp b/x11-wm/obconf-qt/files/patch-src_theme.cpp
deleted file mode 100644
index 9c9a3d5632ac..000000000000
--- a/x11-wm/obconf-qt/files/patch-src_theme.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/theme.cpp.orig 2018-09-20 14:07:09 UTC
-+++ src/theme.cpp
-@@ -156,10 +156,11 @@ void MainDialog::on_install_theme_clicke
- }
-
- void MainDialog::on_theme_archive_clicked() {
-- QString filename = QFileDialog::getSaveFileName(this,
-- tr("Choose an Openbox theme"),
-- QString(),
-- "Openbox theme archives (*.obt);;");
-+ QFileDialog* dialog = new QFileDialog();
-+ dialog->setFileMode(QFileDialog::Directory);
-+ QString filename="";
-+ if(dialog->exec())
-+ filename= dialog->selectedFiles()[0];
- if(!filename.isEmpty()) {
- archive_create(filename.toLocal8Bit().constData());
- }