guselnikov

class_2.cpp

Jan 19th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include "class_2.h"
  2. #include "ui_class_2.h"
  3.  
  4. Class_2::Class_2(QWidget *parent) :
  5.     QDialog(parent),
  6.     ui(new Ui::Class_2)
  7. {
  8.     ui->setupUi(this);
  9. }
  10.  
  11. Class_2::~Class_2()
  12. {
  13.     delete ui;
  14. }
  15.  
  16. void Class_2::on_lineEdit_textChanged(const QString &arg1)
  17. {
  18.     ui->label->setText(arg1);
  19.     emit send_name(arg1);
  20. }
Add Comment
Please, Sign In to add comment