Commit 07e33432c3ac10fb299a356cda59aa004ca88632

Authored by Perry Werneck
1 parent 533cb816

Adding label for "ok" button on standard popup structure.

Showing 2 changed files with 3 additions and 1 deletions   Show diff stats
src/include/lib3270/popup.h
@@ -62,7 +62,8 @@ @@ -62,7 +62,8 @@
62 LIB3270_NOTIFY type; \ 62 LIB3270_NOTIFY type; \
63 const char * title; \ 63 const char * title; \
64 const char * summary; \ 64 const char * summary; \
65 - const char * body; 65 + const char * body; \
  66 + const char * label;
66 67
67 typedef struct _LIB3270_POPUP 68 typedef struct _LIB3270_POPUP
68 { 69 {
src/ssl/notify.c
@@ -96,6 +96,7 @@ static LIB3270_POPUP * translate_ssl_error_message(const SSL_ERROR_MESSAGE *msg, @@ -96,6 +96,7 @@ static LIB3270_POPUP * translate_ssl_error_message(const SSL_ERROR_MESSAGE *msg,
96 else 96 else
97 popup->title = _("Security alert"); 97 popup->title = _("Security alert");
98 98
  99 + popup->label = _("Continue");
99 return popup; 100 return popup;
100 } 101 }
101 102