mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

插件加载完成判断有误,导致插件加载完成信号未发出,使得插件位置标签未写入到json变量里,最终导致在保存插件是否显示状态值时,将位置值写到了状态标签上 Log: 修复任务栏“显示桌面”无法移除,按下菜单的显示桌面无法移除显示桌面插件 Bug: https://pms.uniontech.com/zentao/bug-view-74956.html Change-Id: If88040bc027561b9a1127568f7fab6d24d61389d
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: sbw <sbw@sbw.so>
|
|
*
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
*
|
|
* 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
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef PLUGINLOADER_H
|
|
#define PLUGINLOADER_H
|
|
|
|
#include <QThread>
|
|
|
|
class PluginLoader : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PluginLoader(const QString &pluginDirPath, QObject *parent);
|
|
|
|
signals:
|
|
void finished() const;
|
|
void pluginFounded(const QString &pluginFile) const;
|
|
|
|
protected:
|
|
void run();
|
|
|
|
private:
|
|
QString m_pluginDirPath;
|
|
|
|
};
|
|
|
|
#endif // PLUGINLOADER_H
|