convert most char[...] configuration values to std::string

Signed-off-by: Jacek Jendrzej <crashdvb@googlemail.com>
This commit is contained in:
martii
2013-06-11 13:32:19 +02:00
committed by Jacek Jendrzej
parent fce161b70b
commit cbc9299df8
40 changed files with 483 additions and 470 deletions

View File

@@ -45,8 +45,10 @@ class CNFSMountGui : public CMenuTarget
int menu();
int menuEntry(int nr);
char m_entry[NETWORK_NFS_NR_OF_ENTRIES][200];
char ISO_8859_1_entry[NETWORK_NFS_NR_OF_ENTRIES][200];
std::string m_entry[NETWORK_NFS_NR_OF_ENTRIES];
std::string ISO_8859_1_entry[NETWORK_NFS_NR_OF_ENTRIES];
std::string getEntryString(int i);
CMenuWidget *mountMenuWPtr;
int menu_offset;