mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
15 lines
292 B
C++
15 lines
292 B
C++
|
#include "downloadoptionsdialog.h"
|
||
|
#include "ui_downloadoptionsdialog.h"
|
||
|
|
||
|
DownloadOptionsDialog::DownloadOptionsDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::DownloadOptionsDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
DownloadOptionsDialog::~DownloadOptionsDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|