You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
550 B
27 lines
550 B
#include "WatchdogProcessView.h" |
|
#include "ui_WatchdogProcessView.h" |
|
|
|
WatchdogProcessView::WatchdogProcessView(int processid, QWidget *parent) : |
|
QWidget(parent), |
|
processid(processid), |
|
m_ui(new Ui::WatchdogProcessView) |
|
{ |
|
m_ui->setupUi(this); |
|
} |
|
|
|
WatchdogProcessView::~WatchdogProcessView() |
|
{ |
|
delete m_ui; |
|
} |
|
|
|
void WatchdogProcessView::changeEvent(QEvent *e) |
|
{ |
|
QWidget::changeEvent(e); |
|
switch (e->type()) { |
|
case QEvent::LanguageChange: |
|
m_ui->retranslateUi(this); |
|
break; |
|
default: |
|
break; |
|
} |
|
}
|
|
|