Patch level :

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :


git-svn-id: svn://10.65.10.50/trunk@15830 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2007-12-03 14:40:08 +00:00
parent f81a2f7e8e
commit cc34635cff
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
// lista dei tipi di installazione 0=non si sa, 1=standalone, 2=server, 3=client
enum InstallationType { it_none, it_standalone, it_server, it_client, it_upgrade = 9 };
enum LurchMode {lm_none, lm_service, lm_autostart};
enum LurchMode { lm_none, lm_service, lm_autostart };
////////////////////////////////////////////////////////////////////////////////////////////
//Classe per la gestione dei files di configurazione tipo campo.ini
class CampoIniFile : public wxObject

View File

@ -992,7 +992,7 @@ bool CampoWizardPage7::ForwardValidate()
//..e loro modalita' di esecuzione
if (bInstAuth || bInstDict)
{
int nType = m_pRadioBox->GetSelection();
int nType = m_pRadioBox->GetSelection() + 1; //+1 perchè 0 corrisponde a lm_none
GetWizard().SetSrvAutostartMode((LurchMode)nType);
}
else