Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 391 → Rev 394

/QMK-Groundstation/branches/own_com_lib/Classes/cSettings.cpp
82,7 → 82,7
// Config der Analogwert-Anzeige (Plotter / CVS)
void cSettings::write_Settings_Analog(int ID)
{
QString Hardware = HardwareType[ID];
QString Hardware = QString(HardwareType[ID].c_str());
 
QSettings Setting("KeyOz-Net", "QMK-Groundstation");
 
97,7 → 97,7
QBitArray Def_View;
Def_View.fill(true,MaxAnalog);
 
QString Hardware = HardwareType[ID];
QString Hardware = QString(HardwareType[ID].c_str());
 
QSettings Setting("KeyOz-Net", "QMK-Groundstation");
 
110,7 → 110,7
// Labels der Analogwerte.
void cSettings::write_Settings_AnalogLabels(int ID)
{
QString Hardware = HardwareType[ID];
QString Hardware = QString(HardwareType[ID].c_str());
 
QSettings Setting("KeyOz-Net", "QMK-Groundstation-Labels");
 
125,7 → 125,7
 
void cSettings::read_Settings_AnalogLabels(int ID)
{
QString Hardware = HardwareType[ID];
QString Hardware = QString(HardwareType[ID].c_str());
 
QSettings Setting("KeyOz-Net", "QMK-Groundstation-Labels");