mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Fix lint issues in last commit
This commit is contained in:
parent
6c31f5fe7a
commit
faff23ed38
1 changed files with 15 additions and 15 deletions
|
@ -17,9 +17,9 @@
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QLayout>
|
#include <QLayout>
|
||||||
|
#include <QPluginLoader>
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
#include <QShortcut>
|
#include <QShortcut>
|
||||||
#include <QPluginLoader>
|
|
||||||
|
|
||||||
#include <mtx/requests.hpp>
|
#include <mtx/requests.hpp>
|
||||||
|
|
||||||
|
@ -488,23 +488,23 @@ MainWindow::showDialog(QWidget *dialog)
|
||||||
bool
|
bool
|
||||||
MainWindow::loadJdenticonPlugin()
|
MainWindow::loadJdenticonPlugin()
|
||||||
{
|
{
|
||||||
QDir pluginsDir(qApp->applicationDirPath());
|
QDir pluginsDir(qApp->applicationDirPath());
|
||||||
|
|
||||||
bool plugins = pluginsDir.cd("plugins");
|
bool plugins = pluginsDir.cd("plugins");
|
||||||
if (plugins) {
|
if (plugins) {
|
||||||
foreach (QString fileName, pluginsDir.entryList(QDir::Files)) {
|
foreach (QString fileName, pluginsDir.entryList(QDir::Files)) {
|
||||||
QPluginLoader pluginLoader(pluginsDir.absoluteFilePath(fileName));
|
QPluginLoader pluginLoader(pluginsDir.absoluteFilePath(fileName));
|
||||||
QObject *plugin = pluginLoader.instance();
|
QObject *plugin = pluginLoader.instance();
|
||||||
if (plugin) {
|
if (plugin) {
|
||||||
jdenticonInteface_ = qobject_cast<JdenticonInterface *>(plugin);
|
jdenticonInteface_ = qobject_cast<JdenticonInterface *>(plugin);
|
||||||
if (jdenticonInteface_) {
|
if (jdenticonInteface_) {
|
||||||
nhlog::ui()->info("Found jdenticon plugin.");
|
nhlog::ui()->info("Found jdenticon plugin.");
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
nhlog::ui()->info("jdenticon plugin not found.");
|
nhlog::ui()->info("jdenticon plugin not found.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
Loading…
Reference in a new issue