FormOcppSettings.cpp 439 B

12345678910111213141516171819202122232425
  1. #include "FormOcppSettings.h"
  2. #include "ui_FormOcppSettings.h"
  3. FormOcppSettings::FormOcppSettings(BaseWidget *parent)
  4. : BaseWidget(parent)
  5. , ui(new Ui::FormOcppSettings)
  6. {
  7. ui->setupUi(this);
  8. }
  9. FormOcppSettings::~FormOcppSettings()
  10. {
  11. delete ui;
  12. }
  13. bool FormOcppSettings::returnParent()
  14. {
  15. return true;
  16. }
  17. void FormOcppSettings::showEvent(QShowEvent *event)
  18. {
  19. setIsModify(false);
  20. BaseWidget::showEvent(event);
  21. }