Patch level : 10.0 210

Files correlati     : ba1
Ricompilazione Demo : [ ]
Commento            :
Aggiunto supporto per nuova icona Excel


git-svn-id: svn://10.65.10.50/trunk@18911 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2009-05-22 09:34:50 +00:00
parent 7fabbb7e5f
commit 0f6a750f34

View File

@ -238,12 +238,9 @@ bool TInstaller_mask::add_header(TConfig& ini, const TString& module)
bool TInstaller_mask::has_module(int modnumber) const
{
if (modnumber > 0 && !dongle().shown(modnumber))
return false;
//se sei un server hai tutti i moduli da installare
if (station_type() == 2)
return true;
return dongle().shown(modnumber);
//senno' sei sfigato e ti installa solo i moduli sulla chiave
return main_app().has_module(modnumber, CHK_DONGLE);
@ -685,7 +682,7 @@ int TInstaller_mask::needs_reboot(const TFilename& file) const
bool TInstaller_mask::is_zip_file(const TFilename& n) const
{
bool yes = xvt_str_compare_ignoring_case(n.ext(), "zip") == 0 &&
xvt_str_compare_ignoring_case(n.name(), "dninst.zip") != 0;
xvt_str_compare_ignoring_case(n.name_only(), "dninst") != 0;
return yes;
}
@ -794,7 +791,7 @@ bool TInstaller_mask::copy_tree(const char* src_study, const char* dst_study) co
const TFilename dir = xvt_slist_get(dlist, d, NULL);
TString name = dir.name(); name.lower();
if (name == "cesp")
if (name == "cesp") // Ignora la vetusta cartella Cespiti in FoxPro
continue;
msg.cut(0) << TR("Copia di ") << name;