Removes SVFR from flightplan, shall not be used according to documentation

This commit is contained in:
Klaus Basan
2014-05-06 13:12:20 +02:00
parent 5dd2578a4f
commit 31b83e0f1e
2 changed files with 0 additions and 10 deletions

View File

@@ -85,8 +85,6 @@ namespace BlackGui
rule = CFlightPlan::IFR; rule = CFlightPlan::IFR;
else if (this->ui->rb_TypeVfr->isChecked()) else if (this->ui->rb_TypeVfr->isChecked())
rule = CFlightPlan::VFR; rule = CFlightPlan::VFR;
else if (this->ui->rb_TypeSvfr->isChecked())
rule = CFlightPlan::SVFR;
flightPlan.setFlightRule(rule); flightPlan.setFlightRule(rule);
v = ui->le_Callsign->text().trimmed(); v = ui->le_Callsign->text().trimmed();

View File

@@ -249,13 +249,6 @@
</property> </property>
</widget> </widget>
</item> </item>
<item>
<widget class="QRadioButton" name="rb_TypeSvfr">
<property name="text">
<string>SVFR</string>
</property>
</widget>
</item>
<item> <item>
<widget class="QRadioButton" name="rb_TypeIfr"> <widget class="QRadioButton" name="rb_TypeIfr">
<property name="text"> <property name="text">
@@ -742,7 +735,6 @@
</customwidgets> </customwidgets>
<tabstops> <tabstops>
<tabstop>rb_TypeVfr</tabstop> <tabstop>rb_TypeVfr</tabstop>
<tabstop>rb_TypeSvfr</tabstop>
<tabstop>rb_TypeIfr</tabstop> <tabstop>rb_TypeIfr</tabstop>
<tabstop>le_Callsign</tabstop> <tabstop>le_Callsign</tabstop>
<tabstop>le_AircraftType</tabstop> <tabstop>le_AircraftType</tabstop>