diff options
| author | 2023-10-01 22:15:28 -0400 | |
|---|---|---|
| committer | 2023-10-01 22:15:28 -0400 | |
| commit | 6c7facd13e4344053c53bd32a5e33a6e50600252 (patch) | |
| tree | ba6b6a5d8ac0c6dc36270c608a587fe5d7ba335c /src/qt5gtk2-qtplugin/main.cpp | |
| parent | f6a38af56389f290d57c5ea3a9c423b533981bc9 (diff) | |
| parent | b4aec80fb155d11cde43352cf92090ee593807c5 (diff) | |
Update upstream source from tag 'upstream/1.0'
Update to upstream version '1.0'
with Debian dir 0bdfe9149271113ac8a7852913f4f52aa7b53672
Diffstat (limited to 'src/qt5gtk2-qtplugin/main.cpp')
| -rw-r--r-- | src/qt5gtk2-qtplugin/main.cpp | 5 |
1 files changed, 3 insertions, 2 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; |
