mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
new branch
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
#include "instructorsandtraineeswidget.h"
|
||||
#include "ui_instructorsandtraineeswidget.h"
|
||||
#include "dialogauthorizationinstructor.h"
|
||||
#include "doctaskswidget.h"
|
||||
|
||||
InstructorsAndTraineesWidget::InstructorsAndTraineesWidget(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
@@ -406,3 +407,14 @@ void InstructorsAndTraineesWidget::updateLabelLoggedInInstructor()
|
||||
|
||||
mtxAccess.unlock();
|
||||
}
|
||||
|
||||
void InstructorsAndTraineesWidget::on_btnDocTasks_clicked()
|
||||
{
|
||||
DocTasksWidget docTasks(this);
|
||||
QDialog* dialog = new QDialog(this);
|
||||
QHBoxLayout *layout = new QHBoxLayout(dialog);
|
||||
layout->addWidget(&docTasks);
|
||||
dialog->setWindowTitle(tr("Doc tasks"));
|
||||
dialog->setMinimumSize(1200, 800);
|
||||
dialog->exec();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user