diff options
Diffstat (limited to 'x11-themes/qtcurve/files')
6 files changed, 0 insertions, 136 deletions
diff --git a/x11-themes/qtcurve/files/qtcurve-1.8.18-glibc-2.23.patch b/x11-themes/qtcurve/files/qtcurve-1.8.18-glibc-2.23.patch deleted file mode 100644 index 06a27d5a8854..000000000000 --- a/x11-themes/qtcurve/files/qtcurve-1.8.18-glibc-2.23.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/lib/utils/color.h.orig 2017-02-16 00:55:24.000000000 +0300 -+++ b/lib/utils/color.h 2017-02-16 01:00:40.176467232 +0300 -@@ -25,6 +25,10 @@ - - #include <math.h> - -+#if __cplusplus >= 201103L && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 23)) -+#include <cmath> -+#endif -+ - #include "utils.h" - #include "options.h" - diff --git a/x11-themes/qtcurve/files/qtcurve-1.8.18-gtk2_segfault.patch b/x11-themes/qtcurve/files/qtcurve-1.8.18-gtk2_segfault.patch deleted file mode 100644 index b4a2f1a44610..000000000000 --- a/x11-themes/qtcurve/files/qtcurve-1.8.18-gtk2_segfault.patch +++ /dev/null @@ -1,14 +0,0 @@ -https://github.com/QtCurve/qtcurve-gtk2/issues/3 -https://gist.github.com/anonymous/8e6e4ea32dabf03cf630 - ---- qtcurve-1.8.18/gtk2/style/qtcurve.c -+++ qtcurve-1.8.18/gtk2/style/qtcurve.c -@@ -372,7 +372,7 @@ - } else if (!(qtSettings.app == GTK_APP_JAVA && widget && - GTK_IS_LABEL(widget))) { - if (state != GTK_STATE_PRELIGHT || opts.crHighlight || -- strcmp(detail, "checkbutton") != 0) { -+ ( detail != NULL && strcmp(detail, "checkbutton") != 0 )) { - parent_class->draw_flat_box(style, window, state, shadow, area, - widget, detail, x, y, width, height); - } diff --git a/x11-themes/qtcurve/files/qtcurve-1.8.18-remove_qt_filedialog_api.patch b/x11-themes/qtcurve/files/qtcurve-1.8.18-remove_qt_filedialog_api.patch deleted file mode 100644 index 087ec7f27f67..000000000000 --- a/x11-themes/qtcurve/files/qtcurve-1.8.18-remove_qt_filedialog_api.patch +++ /dev/null @@ -1,58 +0,0 @@ -From 323402d8b99502300f65e909c61153cbd5d5d997 Mon Sep 17 00:00:00 2001 -From: Marco Martin <notmart@gmail.com> -Date: Mon, 19 May 2014 10:37:37 +0200 -Subject: [PATCH] remove qt_filedialog_* api - -it has been removed and doesn't build anymore with recent Qt5 stable -branch ---- - qt5/style/qtcurve_api.cpp | 26 -------------------------- - 1 file changed, 26 deletions(-) - -diff --git a/qt5/style/qtcurve_api.cpp b/qt5/style/qtcurve_api.cpp -index a5ded22..2c794b7 100644 ---- a/qt5/style/qtcurve_api.cpp -+++ b/qt5/style/qtcurve_api.cpp -@@ -67,25 +67,6 @@ - - #include <QDebug> - --extern QString (*qt_filedialog_existing_directory_hook)( -- QWidget *parent, const QString &caption, const QString &dir, -- QFileDialog::Options options); -- --extern QString (*qt_filedialog_open_filename_hook)( -- QWidget *parent, const QString &caption, const QString &dir, -- const QString &filter, QString *selectedFilter, -- QFileDialog::Options options); -- --extern QStringList (*qt_filedialog_open_filenames_hook)( -- QWidget * parent, const QString &caption, const QString &dir, -- const QString &filter, QString *selectedFilter, -- QFileDialog::Options options); -- --extern QString (*qt_filedialog_save_filename_hook)( -- QWidget *parent, const QString &caption, const QString &dir, -- const QString &filter, QString *selectedFilter, -- QFileDialog::Options options); -- - namespace QtCurve { - - void -@@ -163,13 +144,6 @@ Style::polish(QApplication *app) - opts.menuBgndAppearance = APPEARANCE_FLAT; - } - -- if (opts.useQtFileDialogApps.contains(appName)) { -- qt_filedialog_existing_directory_hook = 0L; -- qt_filedialog_open_filename_hook = 0L; -- qt_filedialog_open_filenames_hook = 0L; -- qt_filedialog_save_filename_hook = 0L; -- } -- - QCommonStyle::polish(app); - if (opts.hideShortcutUnderline) { - app->installEventFilter(m_shortcutHandler); --- -1.9.3 - diff --git a/x11-themes/qtcurve/files/qtcurve-1.8.18-std_isnan.patch b/x11-themes/qtcurve/files/qtcurve-1.8.18-std_isnan.patch deleted file mode 100644 index 1064d2026894..000000000000 --- a/x11-themes/qtcurve/files/qtcurve-1.8.18-std_isnan.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff --git a/lib/utils/color.h.orig b/lib/utils/color.h -index 2c7081f..37d83b5 100644 ---- a/lib/utils/color.h.orig -+++ b/lib/utils/color.h -@@ -23,6 +23,8 @@ - #ifndef QTC_UTILS_COLOR_H - #define QTC_UTILS_COLOR_H - -+#include <math.h> -+ - #include "utils.h" - #include "options.h" - -@@ -250,7 +252,7 @@ qtcColorTint(const QColor *base, const QColor *col, double amount) - return *base; - } else if (amount >= 1.0) { - return *col; -- } else if (isnan(amount)) { -+ } else if (std::isnan(amount)) { - return *base; - } - const QtcColor qtc_base = {base->redF(), base->greenF(), base->blueF()}; -@@ -267,7 +269,7 @@ qtcColorMix(const QColor *c1, const QColor *c2, double bias) - return *c1; - } else if (bias >= 1.0) { - return *c2; -- } else if (isnan(bias)) { -+ } else if (std::isnan(bias)) { - return *c1; - } - const QtcColor qtc_c1 = {c1->redF(), c1->greenF(), c1->blueF()}; diff --git a/x11-themes/qtcurve/files/qtcurve-1.8.18_p20170601-include.patch b/x11-themes/qtcurve/files/qtcurve-1.8.18_p20170601-include.patch deleted file mode 100644 index 8b66c693c760..000000000000 --- a/x11-themes/qtcurve/files/qtcurve-1.8.18_p20170601-include.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/qt5/style/qtcurve.cpp -+++ b/qt5/style/qtcurve.cpp -@@ -67,6 +67,7 @@ - #include <QSettings> - #include <QPixmapCache> - #include <QTextStream> -+#include <QDebug> - - #include "shadowhelper.h" - #include <qtcurve-utils/x11qtc.h> diff --git a/x11-themes/qtcurve/files/qtcurve-9999-add_utils_include.patch b/x11-themes/qtcurve/files/qtcurve-9999-add_utils_include.patch deleted file mode 100644 index 5536937f9b18..000000000000 --- a/x11-themes/qtcurve/files/qtcurve-9999-add_utils_include.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/qt4/style/qtcurve_plugin.cpp 2016-10-25 10:12:41.000000000 +0200 -+++ b/qt4/style/qtcurve_plugin.cpp 2016-10-25 10:21:32.446853060 +0200 -@@ -22,6 +22,7 @@ - - #include "qtcurve_plugin.h" - #include "qtcurve.h" -+#include "utils.h" - #include "config.h" - - #include <qtcurve-utils/qtprops.h> |