mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix some compilation errors caused by an incorrect merge
This commit is contained in:
parent
4ad0ed4d45
commit
3c3abba202
|
@ -1,9 +1,9 @@
|
|||
#include "moderationpage.hpp"
|
||||
|
||||
#include "application.hpp"
|
||||
#include "singletons/loggingmanager.hpp"
|
||||
#include "controllers/taggedusers/taggeduserscontroller.hpp"
|
||||
#include "controllers/taggedusers/taggedusersmodel.hpp"
|
||||
#include "singletons/loggingmanager.hpp"
|
||||
#include "singletons/pathmanager.hpp"
|
||||
#include "util/layoutcreator.hpp"
|
||||
#include "widgets/helper/editablemodelview.hpp"
|
||||
|
@ -59,22 +59,21 @@ ModerationPage::ModerationPage()
|
|||
created->setOpenExternalLinks(true);
|
||||
logs.append(this->createCheckBox("Enable logging", app->settings->enableLogging));
|
||||
|
||||
<
|
||||
logs->addStretch(1);
|
||||
|
||||
auto selectDir = layout.emplace<QPushButton>("Set custom logpath");
|
||||
auto selectDir = logs.emplace<QPushButton>("Set custom logpath");
|
||||
|
||||
// Setting custom logpath
|
||||
QObject::connect(selectDir.getElement(), &QPushButton::clicked, this, [
|
||||
this, created, app, dirMemory = QString{app->settings->logPath}
|
||||
]() mutable {
|
||||
QObject::connect(
|
||||
selectDir.getElement(), &QPushButton::clicked, this,
|
||||
[this, created, app, dirMemory = QString{app->settings->logPath}]() mutable {
|
||||
auto dirName = QFileDialog::getExistingDirectory(this);
|
||||
created->setText("Logs are saved to " + CreateLink(dirName, true));
|
||||
|
||||
if (dirName == "" && dirMemory == "") {
|
||||
created->setText(
|
||||
"Logs are saved to " +
|
||||
CreateLink(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation),
|
||||
created->setText("Logs are saved to " +
|
||||
CreateLink(QStandardPaths::writableLocation(
|
||||
QStandardPaths::AppDataLocation),
|
||||
true));
|
||||
} else if (dirName == "") {
|
||||
dirName = dirMemory;
|
||||
|
@ -84,10 +83,9 @@ ModerationPage::ModerationPage()
|
|||
app->settings->logPath = dirName;
|
||||
dirMemory = dirName;
|
||||
app->logging->refreshLoggingPath();
|
||||
|
||||
});
|
||||
// Reset custom logpath
|
||||
auto resetDir = layout.emplace<QPushButton>("Reset logpath");
|
||||
auto resetDir = logs.emplace<QPushButton>("Reset logpath");
|
||||
QObject::connect(
|
||||
resetDir.getElement(), &QPushButton::clicked, this, [this, created, app]() mutable {
|
||||
app->settings->logPath = "";
|
||||
|
|
Loading…
Reference in a new issue