roll back: src/downloadlist.cpp

This commit is contained in:
shenmo 2021-06-21 16:27:07 +08:00
parent cd1892fd66
commit 9def55a2c2
2 changed files with 4 additions and 3 deletions

View File

@ -17,7 +17,7 @@ downloadlist::downloadlist(QWidget *parent) :
action_dpkg(new QAction),
action_deepin(new QAction),
action_gdebi(new QAction),
output_w(new QDialog),
output_w(new DDialog),
textbrowser(new QTextBrowser)
{
ui->setupUi(this);

View File

@ -6,8 +6,9 @@
#include <QMenu>
#include <QAction>
#include <QDialog>
#include <DDialog>
DWIDGET_USE_NAMESPACE
namespace Ui {
class downloadlist;
@ -51,7 +52,7 @@ private:
QAction *action_deepin;
QAction *action_gdebi;
QDialog *output_w;
DDialog *output_w;
QTextBrowser *textbrowser;
private slots: