Patch level : 2.0 664

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :

EP20153
problema sui list-box: non e' piu' possibile selezionare una voce facendo
doppio click su di essa.Es: entro nel programma documenti interattivi vado
su file impostazioni stampante e provo a selezionare un font dal list box


git-svn-id: svn://10.65.10.50/trunk@11683 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2003-12-19 10:34:43 +00:00
parent 4a6fff7e3a
commit ec9e033319
2 changed files with 1195 additions and 3 deletions

1188
include/codebase.c Executable file

File diff suppressed because it is too large Load Diff

View File

@ -1295,12 +1295,16 @@ bool TFilename::custom_path(const char* path_list)
TToken_string pl = path_list;
if (pl.empty())
{
pl.add("custom"); // c:/campo32/custom
if (prefix_valid())
{
pl = firm2dir(prefix().get_codditta()); // f:/campo/dati/00001A
pl.add(firm2dir(-1)); pl << "custom"; // f:/campo/dati/custom
TFilename n;
n = firm2dir(prefix().get_codditta()); n.add("custom");
pl.add(n); // f:/campo32/dati/00001A/custom
n = firm2dir(-1); n.add("custom");
pl.add(n); // f:/campo32/dati/custom
}
pl.add("custom"); // c:/campo/custom
}
const TString fname = name();
FOR_EACH_TOKEN(pl, path)