dialogselrank.cpp 332 B

1234567891011121314151617181920
  1. #include "dialogselrank.h"
  2. #include "ui_dialogselrank.h"
  3. DialogSelRank::DialogSelRank(QWidget *parent) :
  4. QDialog(parent),
  5. ui(new Ui::DialogSelRank)
  6. {
  7. ui->setupUi(this);
  8. }
  9. DialogSelRank::~DialogSelRank()
  10. {
  11. delete ui;
  12. }
  13. int DialogSelRank::getRankValue()
  14. {
  15. return ui->comboBoxRankOrder->currentText().toInt();
  16. }