mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +08:00
Fixes issues found during testing refs #568
* upper case in filters * validation of distributor (made distributor mandatory) * country change triggers filter
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
#include "dbcountryselectorcomponent.h"
|
||||
#include "ui_dbcountryselectorcomponent.h"
|
||||
#include "blackgui/guiutility.h"
|
||||
#include "blackgui/uppercasevalidator.h"
|
||||
#include <QMimeData>
|
||||
|
||||
using namespace BlackGui;
|
||||
@@ -32,6 +33,8 @@ namespace BlackGui
|
||||
connect(ui->le_CountryName, &QLineEdit::returnPressed, this, &CDbCountrySelectorComponent::ps_dataChanged);
|
||||
connect(ui->le_CountryIso, &QLineEdit::editingFinished, this, &CDbCountrySelectorComponent::ps_dataChanged);
|
||||
connect(ui->le_CountryName, &QLineEdit::returnPressed, this, &CDbCountrySelectorComponent::ps_dataChanged);
|
||||
|
||||
this->ui->le_CountryIso->setValidator(new CUpperCaseValidator(this));
|
||||
}
|
||||
|
||||
CDbCountrySelectorComponent::~CDbCountrySelectorComponent()
|
||||
|
||||
Reference in New Issue
Block a user