Skip to content
Snippets Groups Projects
Commit fee8cbec authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Re-sync with uifc.h: WIN_GET->COPY WIN_PUT->PASTE WIN_HLP->CUT

As poinsted out by Mlong, these constant names got out of sync with uifc.h
over the years. WIN_HLP isn't used UIFC in jsexec (js_uifc.c).
parent 1dfa85e7
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #339 passed
...@@ -81,12 +81,12 @@ const WIN_DELACT = (1<<8); /* Remains active after delete key */ ...@@ -81,12 +81,12 @@ const WIN_DELACT = (1<<8); /* Remains active after delete key */
const WIN_ESC = (1<<9); /* Screen is active when escape is hit */ const WIN_ESC = (1<<9); /* Screen is active when escape is hit */
const WIN_RHT = (1<<10); /* Place window against right side of screen */ const WIN_RHT = (1<<10); /* Place window against right side of screen */
const WIN_BOT = (1<<11); /* Place window against botton of screen */ const WIN_BOT = (1<<11); /* Place window against botton of screen */
const WIN_GET = (1<<12); /* Allows F5 to Get a menu item */ const WIN_COPY = (1<<12); /* Allows F5 to Get (copy) a menu item */
const WIN_PUT = (1<<13); /* Allows F6 to Put a menu item */ const WIN_PASTE = (1<<13); /* Allows F6 to Put (paste) a menu item */
const WIN_CHE = (1<<14); /* Stay active after escape if changes */ const WIN_CHE = (1<<14); /* Stay active after escape if changes */
const WIN_XTR = (1<<15); /* Add extra line at end for inserting at end */ const WIN_XTR = (1<<15); /* Add extra line at end for inserting at end */
const WIN_DYN = (1<<16); /* Dynamic window - return at least every second */ const WIN_DYN = (1<<16); /* Dynamic window - return at least every second */
const WIN_HLP = (1<<17); /* Parse 'Help codes' */ const WIN_CUT = (1<<17); /* Allow ^X (cut) a menu item */
const WIN_PACK = (1<<18); /* Pack text in window (No padding) */ const WIN_PACK = (1<<18); /* Pack text in window (No padding) */
const WIN_IMM = (1<<19); /* Draw window and return immediately */ const WIN_IMM = (1<<19); /* Draw window and return immediately */
const WIN_FAT = (1<<20); /* Do not pad outside borders */ const WIN_FAT = (1<<20); /* Do not pad outside borders */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment