mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-08-16 08:34:12 +02:00
2017-10-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdadmin(1) that caused a segfault when opening the 'Edit Host' dialog.
This commit is contained in:
parent
afbc6c5873
commit
939cd03a30
@ -16198,3 +16198,6 @@
|
|||||||
2017-10-19 Fred Gleason <fredg@paravelsystems.com>
|
2017-10-19 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Updated 'NEWS'.
|
* Updated 'NEWS'.
|
||||||
* Incremented the package version to 2.17.0int02.
|
* Incremented the package version to 2.17.0int02.
|
||||||
|
2017-10-25 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in rdadmin(1) that caused a segfault when opening the
|
||||||
|
'Edit Host' dialog.
|
||||||
|
@ -92,7 +92,6 @@ EditStation::EditStation(QString sname,QWidget *parent)
|
|||||||
RDTextValidator *validator=new RDTextValidator(this);
|
RDTextValidator *validator=new RDTextValidator(this);
|
||||||
QIntValidator *macro_validator=new QIntValidator(1,RD_MAX_CART_NUMBER,this);
|
QIntValidator *macro_validator=new QIntValidator(1,RD_MAX_CART_NUMBER,this);
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Station Name
|
// Station Name
|
||||||
//
|
//
|
||||||
@ -211,7 +210,6 @@ EditStation::EditStation(QString sname,QWidget *parent)
|
|||||||
station_stop_cart_button->setFont(small_font);
|
station_stop_cart_button->setFont(small_font);
|
||||||
connect(station_stop_cart_button,SIGNAL(clicked()),
|
connect(station_stop_cart_button,SIGNAL(clicked()),
|
||||||
this,SLOT(stopCartClickedData()));
|
this,SLOT(stopCartClickedData()));
|
||||||
caeStationActivatedData(station_station->caeStation());
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Heartbeat Checkbox
|
// Heartbeat Checkbox
|
||||||
@ -461,6 +459,7 @@ EditStation::EditStation(QString sname,QWidget *parent)
|
|||||||
//
|
//
|
||||||
// Populate Fields
|
// Populate Fields
|
||||||
//
|
//
|
||||||
|
caeStationActivatedData(station_station->caeStation());
|
||||||
station_name_edit->setText(station_station->name());
|
station_name_edit->setText(station_station->name());
|
||||||
station_short_name_edit->setText(station_station->shortName());
|
station_short_name_edit->setText(station_station->shortName());
|
||||||
station_description_edit->setText(station_station->description());
|
station_description_edit->setText(station_station->description());
|
||||||
@ -640,7 +639,6 @@ void EditStation::caeStationActivatedData(const QString &station_name)
|
|||||||
station_cue_sel->setDisabled(true);
|
station_cue_sel->setDisabled(true);
|
||||||
station_cue_sel->setDisabled(true);
|
station_cue_sel->setDisabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user