Guest User

Untitled

a guest
Jan 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include "dialog.h"
  2. #include "ui_dialog.h"
  3.  
  4. Dialog::Dialog(QWidget *parent) :
  5.     QDialog(parent),
  6.     ui(new Ui::Dialog)
  7. {
  8.     ui->setupUi(this);
  9. }
  10.  
  11. Dialog::~Dialog()
  12. {
  13.     delete ui;
  14. }
  15.  
  16. void Dialog::on_buttonBox_accepted()
  17. {
  18.     qDebug() << "weird";
  19. }
  20.  
  21. void Dialog::on_radioButton_toggled(bool checked)
  22. {
  23.     qDebug() << "Foo";
  24. }
Add Comment
Please, Sign In to add comment