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 62 LIB3270_NOTIFY type; \
63 63 const char * title; \
64 64 const char * summary; \
65   - const char * body;
  65 + const char * body; \
  66 + const char * label;
66 67  
67 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 96 else
97 97 popup->title = _("Security alert");
98 98  
  99 + popup->label = _("Continue");
99 100 return popup;
100 101 }
101 102  
... ...