Patch level : 2.2

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :


git-svn-id: svn://10.65.10.50/trunk@12655 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2005-02-03 09:56:30 +00:00
parent b6a2d88f00
commit ee8d54e739
3 changed files with 4 additions and 4 deletions

@ -160,7 +160,7 @@
#define LF_FASI 148
#define LF_RIP 149
#define LF_RRIP 150
#define LF_PARANA 151
#define LF_SALDANA 151
#define LF_EXTERNAL 1000 // Files with id >= are considered to be externals

@ -3314,10 +3314,10 @@ bool TEdit_field::default_error_box() const
{
const TString val(get());
error_box("Valore non valido per %s: %s", (const char*)p, (const char*)val);
error_box(TR("Valore non valido per %s: %s"), (const char*)p, (const char*)val);
}
else
error_box("Valore non valido: %s", (const char*)get());
error_box(TR("Valore non valido: %s"), (const char*)get());
}
else
error_box(get_warning());

@ -115,7 +115,7 @@ public:
virtual int read(word op = _isequal, word lockop = _nolock) { TLocalisamfile f(num()); return read(f, op, lockop); }
// @cmember Legge il file <p f> con il tipo di record alla posizione desiderata
virtual int readat(TBaseisamfile& f, TRecnotype nrec, word lockop = _nolock);
int read(TBaseisamfile & f, word op = _isequal, word lockop = _nolock);
virtual int read(TBaseisamfile & f, word op = _isequal, word lockop = _nolock);
virtual int write(TBaseisamfile& f) const { return write_rewrite(f);}
virtual int rewrite(TBaseisamfile& f) const { return write_rewrite(f, TRUE);}