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.
18 lines
406 B
18 lines
406 B
#include "loginwidget.h"
|
|
#include "dp4_login_module.h"
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
LoginWidget::LoginWidget(QWidget *parent)
|
|
: QWidget (parent)
|
|
, m_dp4module(new dss::module::Dp4LoginModule(this))
|
|
{
|
|
QHBoxLayout *layout = new QHBoxLayout(this);
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
layout->setSpacing(0);
|
|
layout->addWidget(m_dp4module->content());
|
|
}
|
|
|
|
LoginWidget::~LoginWidget()
|
|
{
|
|
}
|
|
|