Cambiati identificatori dei Tasti di sistema (K_QUIT, K_FORCE_CLOSE)

git-svn-id: svn://10.65.10.50/trunk@77 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 1994-08-26 16:17:05 +00:00
parent 55ba45f43a
commit d7b0d232c6
3 changed files with 7 additions and 13 deletions

View File

@ -14,15 +14,13 @@
#define K_SHIFT 1000
#define K_CTRL 10000
#define K_CTRL_ENTER K_CTRL+K_ENTER
#define K_AUTO_ENTER K_SHIFT+K_ENTER
#define K_QUIT 10334
#define K_FORCE_CLOSE 11334
#define K_SAVE 10082
#define K_AUTO_ENTER 21013
#define K_QUIT 20334
#define K_FORCE_CLOSE 21334
#define K_SAVE 20082
#define K_SHIFT_TAB K_SHIFT+K_TAB
#define K_SHIFT_F2 K_SHIFT+K_F2
#define K_SHIFT_F3 K_SHIFT+K_F3
#define K_NO 'N'
#define K_YES 'Y'
#define K_NO 20000+'N'
#define K_YES 20000+'Y'
/* @END */
#endif

View File

@ -677,10 +677,6 @@ bool TMask::on_key(KEY key)
case K_NEXT:
next_page(+1);
break;
case K_SHIFT_F3:
if (yesno_box("Confermare il ripristino della maschera"))
undo();
break;
#ifdef DBG
case K_F11:
message_box("Siete fortunati utenti del campo %d della maschera '%s'\n"

View File

@ -1 +1 @@
#define VERSION 1.9
#define VERSION 1.10