9adbcfa9d9ea587304395ebc95a641777f3b8b41
kate
  Mon Mar 15 20:41:15 2021 -0700
Add Cancel button to multi-region config popup, by request of JK. refs #26385

diff --git src/inc/cheapcgi.h src/inc/cheapcgi.h
index 89deeef..194ed88 100644
--- src/inc/cheapcgi.h
+++ src/inc/cheapcgi.h
@@ -558,30 +558,33 @@
  * when you are through. */
 
 void cgiSimpleTableStart();
 /* start HTML table  -- no customization. Leaves room
  * for a fancier implementation */
 
 void cgiTableEnd();
 /* end HTML table */
 
 void cgiMakeSubmitButton();
 /* Make 'submit' type button. */
 
 void cgiMakeResetButton();
 /* Make 'reset' type button. */
 
+void cgiMakeCancelButton(char *label);
+/* Make button named 'Cancel' (for modal dialogs), with optional label (e.g. OK) */
+
 void cgiMakeClearButton(char *form, char *field);
 /* Make button to clear a text field. */
 
 void cgiMakeClearButtonNoSubmit(char *form, char *field);
 /* Make button to clear a text field, without resubmitting the form. */
 
 void cgiMakeFileEntry(char *name);
 /* Make file entry box/browser */
 
 void cgiSimpleTableRowStart();
 /* Start table row */
 
 void cgiTableRowEnd();
 /* End table row */