diff options
author | 2023-05-17 21:59:43 +0530 | |
---|---|---|
committer | 2023-05-17 21:59:43 +0530 | |
commit | 5f10a0f9657358fcd86c55ec065f3855bad0c160 (patch) | |
tree | 340f949dbe076db57bf62879ad150fabc884905a /src/downloadmanagerwidget.h | |
parent | b4b5dc3397966bea899bbb5ec0f756bb745dbff1 (diff) | |
download | whatsie-5f10a0f9657358fcd86c55ec065f3855bad0c160.tar.gz whatsie-5f10a0f9657358fcd86c55ec065f3855bad0c160.zip |
feat: minor fixes + code cleanup
Diffstat (limited to 'src/downloadmanagerwidget.h')
-rw-r--r-- | src/downloadmanagerwidget.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/downloadmanagerwidget.h b/src/downloadmanagerwidget.h index 76464e8..8367041 100644 --- a/src/downloadmanagerwidget.h +++ b/src/downloadmanagerwidget.h @@ -51,10 +51,13 @@ #ifndef DOWNLOADMANAGERWIDGET_H
#define DOWNLOADMANAGERWIDGET_H
+#include "settingsmanager.h"
#include "ui_downloadmanagerwidget.h"
-
#include "utils.h"
-#include <QSettings>
+
+#include <QFileDialog>
+#include <QStandardPaths>
+#include <QWebEngineDownloadItem>
#include <QWidget>
QT_BEGIN_NAMESPACE
@@ -89,7 +92,6 @@ private: void remove(DownloadWidget *downloadWidget);
int m_numDownloads;
- QSettings settings;
};
#endif // DOWNLOADMANAGERWIDGET_H
|