Your warranties manager
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

26 rader
443 B

  1. #include "aboutdialog.h"
  2. #include "ui_aboutdialog.h"
  3. #include <QMessageBox>
  4. AboutDialog::AboutDialog(QWidget *parent, QString version) :
  5. QDialog(parent),
  6. ui(new Ui::AboutDialog)
  7. {
  8. ui->setupUi(this);
  9. ui->version->setText(tr("Version ")+version);
  10. ui->btnFermer->setFocus();
  11. }
  12. void AboutDialog::on_btnQt_clicked()
  13. {
  14. QMessageBox::aboutQt(this, tr("À propos de Qt"));
  15. }
  16. AboutDialog::~AboutDialog()
  17. {
  18. delete ui;
  19. }