refs #748 Make airport completer work

* fixed typo in CWebDataServices
* trigger CAirportDataReader::dataRead() when read from cache, too
* make AirportReader part of AllSwiftDbReaders
* fixed typo in CLoginComponent
This commit is contained in:
Michał Garapich
2016-09-04 21:03:18 +02:00
committed by Mathew Sutcliffe
parent cafd724aaf
commit 281b6d11a6
4 changed files with 10 additions and 7 deletions

View File

@@ -605,7 +605,7 @@ namespace BlackGui
QCompleter *completer = new QCompleter(airports, this);
QStyledItemDelegate *itemDelegate = new QStyledItemDelegate(completer);
completer->popup()->setItemDelegate(itemDelegate);
ui->le_AirlineIcaoDesignator->setCompleter(completer);
ui->le_VatsimHomeAirport->setCompleter(completer);
completer->popup()->setObjectName("AirportCompleter");
completer->popup()->setMinimumWidth(175);
}