mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 08:15:17 +03:00
Removes one warning here
This commit is contained in:
parent
b46b049ba3
commit
f2751979e6
1 changed files with 2 additions and 2 deletions
|
@ -147,7 +147,7 @@ QString PrintDialog::printFlightModes()
|
|||
QString labels[] = { tr("Rud"), tr("Ele"), tr("Thr"), tr("Ail") }; // TODO is elsewhere for sure
|
||||
for (int i=0; i<4; i++) {
|
||||
GeneralSettings generalSettings = *g_eeGeneral;
|
||||
str.append(QString("<td align=\"center\" nowrap><b>%1</b></td>").arg(labels[CONVERT_MODE(i+1)-1]));
|
||||
str.append(QString("<td align=\"center\" nowrap><b>%1</b></td>").arg((QString)labels[CONVERT_MODE(i+1)-1]));
|
||||
}
|
||||
for (unsigned int i=0; i<gvars; i++) {
|
||||
str.append(QString("<td align=\"center\" nowrap><b>GV%1</b><br>%2</td>").arg(i+1).arg(g_model->gvars_names[i]));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue