Aggiunto comando ADD NONE per eliminare il bottone gestione sulle tabelle quando non serve

git-svn-id: svn://10.65.10.50/trunk@403 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 1994-10-19 11:46:18 +00:00
parent 78df1fc27f
commit 3bd418c93d

View File

@ -1,4 +1,4 @@
// $Id: maskfld.cpp,v 1.30 1994-10-14 19:15:06 guy Exp $
// $Id: maskfld.cpp,v 1.31 1994-10-19 11:46:18 alex Exp $
#include <xvt.h>
#include <applicat.h>
@ -1124,7 +1124,12 @@ void TBrowse::parse_join(TScanner& scanner)
void TBrowse::parse_insert(TScanner& scanner)
{
if (scanner.popkey() == "RU")
const TString16 key(scanner.popkey());
if (key == "NO") _insert = "";
else
{
if (key == "RU")
{
_insert = "R";
_insert << scanner.line();
@ -1136,6 +1141,7 @@ void TBrowse::parse_insert(TScanner& scanner)
}
_insert.trim();
}
}
// Certified 100%