mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 10:21:04 +02:00
CScanSettings: convert char[...] configuration values to std::string
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0a5a7b3146
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-01-18 (Sat, 18 Jan 2014)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -762,17 +762,17 @@ class CScanSettings
|
||||
int fast_op;
|
||||
int cable_nid;
|
||||
|
||||
char satName[50];
|
||||
std::string satName;
|
||||
int sat_TP_fec;
|
||||
int sat_TP_pol;
|
||||
char sat_TP_freq[10];
|
||||
char sat_TP_rate[9];
|
||||
std::string sat_TP_freq;
|
||||
std::string sat_TP_rate;
|
||||
|
||||
char cableName[50];
|
||||
std::string cableName;
|
||||
int cable_TP_mod;
|
||||
int cable_TP_fec;
|
||||
char cable_TP_freq[10];
|
||||
char cable_TP_rate[9];
|
||||
std::string cable_TP_freq;
|
||||
std::string cable_TP_rate;
|
||||
|
||||
CScanSettings();
|
||||
|
||||
@@ -781,5 +781,4 @@ class CScanSettings
|
||||
bool saveSettings(const char * const fileName);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user