diff options
| author | 2023-10-01 22:15:28 -0400 | |
|---|---|---|
| committer | 2023-10-01 22:15:28 -0400 | |
| commit | b4aec80fb155d11cde43352cf92090ee593807c5 (patch) | |
| tree | beb8d157a191d12bacb4aaa35b665c94f4df6269 /src/qt5gtk2-qtplugin | |
| parent | d34bb25414f6887dd788a4f817b4da903570e66a (diff) | |
New upstream version 1.0.upstream/1.0upstream
Diffstat (limited to 'src/qt5gtk2-qtplugin')
| -rw-r--r-- | src/qt5gtk2-qtplugin/main.cpp | 5 | ||||
| -rw-r--r-- | src/qt5gtk2-qtplugin/qt5gtk2.json | 2 | ||||
| -rw-r--r-- | src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.cpp | 2 | ||||
| -rw-r--r-- | src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.h | 2 | ||||
| -rw-r--r-- | src/qt5gtk2-qtplugin/qt5gtk2theme.cpp | 2 | ||||
| -rw-r--r-- | src/qt5gtk2-qtplugin/qt5gtk2theme.h | 2 |
6 files changed, 8 insertions, 7 deletions
diff --git a/src/qt5gtk2-qtplugin/main.cpp b/src/qt5gtk2-qtplugin/main.cpp index 096a226..5084a73 100644 --- a/src/qt5gtk2-qtplugin/main.cpp +++ b/src/qt5gtk2-qtplugin/main.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2015 The Qt Company Ltd. * - * Copyright (C) 2016-2022 Ilya Kotov, forkotov02@ya.ru * + * Copyright (C) 2016-2023 Ilya Kotov, forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -35,7 +35,8 @@ public: QPlatformTheme *Qt5Gtk2ThemePlugin::create(const QString &key, const QStringList ¶ms) { Q_UNUSED(params); - if (!key.compare(QLatin1String(Qt5Gtk2Theme::name), Qt::CaseInsensitive)) + if (!key.compare(QLatin1String(Qt5Gtk2Theme::name), Qt::CaseInsensitive) || + !key.compare(QLatin1String("qt6gtk2"), Qt::CaseInsensitive)) return new Qt5Gtk2Theme; return 0; diff --git a/src/qt5gtk2-qtplugin/qt5gtk2.json b/src/qt5gtk2-qtplugin/qt5gtk2.json index cb1b4b1..56e63db 100644 --- a/src/qt5gtk2-qtplugin/qt5gtk2.json +++ b/src/qt5gtk2-qtplugin/qt5gtk2.json @@ -1,3 +1,3 @@ { - "Keys": [ "qt5gtk2" ] + "Keys": [ "qt5gtk2", "qt6gtk2" ] } diff --git a/src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.cpp b/src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.cpp index 76cb732..2b009c5 100644 --- a/src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.cpp +++ b/src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2015 The Qt Company Ltd. * - * Copyright (C) 2016-2022 Ilya Kotov, forkotov02@ya.ru * + * Copyright (C) 2016-2023 Ilya Kotov, forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.h b/src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.h index 58c0351..657b9af 100644 --- a/src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.h +++ b/src/qt5gtk2-qtplugin/qt5gtk2dialoghelpers.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2015 The Qt Company Ltd. * - * Copyright (C) 2016-2022 Ilya Kotov, forkotov02@ya.ru * + * Copyright (C) 2016-2023 Ilya Kotov, forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/src/qt5gtk2-qtplugin/qt5gtk2theme.cpp b/src/qt5gtk2-qtplugin/qt5gtk2theme.cpp index a99d108..acca6be 100644 --- a/src/qt5gtk2-qtplugin/qt5gtk2theme.cpp +++ b/src/qt5gtk2-qtplugin/qt5gtk2theme.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2015 The Qt Company Ltd. * - * Copyright (C) 2016-2022 Ilya Kotov, forkotov02@ya.ru * + * Copyright (C) 2016-2023 Ilya Kotov, forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/src/qt5gtk2-qtplugin/qt5gtk2theme.h b/src/qt5gtk2-qtplugin/qt5gtk2theme.h index 09370bb..9b968e7 100644 --- a/src/qt5gtk2-qtplugin/qt5gtk2theme.h +++ b/src/qt5gtk2-qtplugin/qt5gtk2theme.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2015 The Qt Company Ltd. * - * Copyright (C) 2016-2022 Ilya Kotov, forkotov02@ya.ru * + * Copyright (C) 2016-2023 Ilya Kotov, forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * |
