Patch level : 12.0 nopatch

Files correlati     :
Commento:
Modificata get_mask in _get_mask
This commit is contained in:
Alessandro Bonazzi 2022-10-02 22:23:03 +02:00
parent 7ccdded78c
commit 59cb31e5bf
6 changed files with 4 additions and 4 deletions

Binary file not shown.

View File

@ -89,7 +89,7 @@ void TStampa_INTRA::main_loop()
}
while(m.run() == K_ENTER)
{
TProgramReport report;
TProgram_report report;
TReport_book book;
report.load(repname);

View File

@ -52,7 +52,7 @@ class TImmissione_intra : public TRelation_application
protected:
virtual bool user_create();
virtual TRelation* get_relation() const { return _rel; }
virtual TMask* get_mask(int) { return _msk; }
virtual TMask* _get_mask(int) { return _msk; }
virtual bool changing_mask(int mode) { return FALSE; }
virtual bool user_destroy();
virtual bool protected_record(TRectype & rec);

View File

@ -152,7 +152,7 @@ class TRiepiloghi_intra : public TRelation_application
protected:
virtual bool user_create();
virtual TRelation* get_relation() const { return _rel; }
virtual TMask* get_mask(int) { return _msk; }
virtual TMask* _get_mask(int) { return _msk; }
virtual int write(const TMask& m);
virtual bool changing_mask(int mode) { return FALSE; }
virtual bool user_destroy();

View File

@ -148,7 +148,7 @@ class TRettifiche_intra : public TRelation_application
protected:
virtual bool user_create();
virtual TRelation* get_relation() const { return _rel; }
virtual TMask* get_mask(int) { return _msk; }
virtual TMask* _get_mask(int) { return _msk; }
virtual bool changing_mask(int mode) { return FALSE; }
virtual bool user_destroy();
virtual bool get_next_key(TToken_string& k);