Skip to content

Commit

Permalink
Fix missing QSettings include
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed Sep 5, 2020
1 parent 2a235ff commit a6cd39c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/lib/src/downloader/downloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include <QCoreApplication>
#include <QEventLoop>
#include <QObject>
#include <QSettings>
#include <qmath.h>
#include <iostream>
#include <utility>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/src/models/profile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ void Profile::syncIgnored() const
fileIgnored.close();
}
}
void Profile::syncBlacklist() const
void Profile::syncBlacklist() const
{
QFile fileBlacklist(m_path + "/blacklist.txt");
if (fileBlacklist.open(QFile::WriteOnly | QFile::Text | QFile::Truncate)) {
Expand Down

0 comments on commit a6cd39c

Please sign in to comment.