const args for 3 functions :

Confirmation_box()
Warning_message()
Requester_window()
This commit is contained in:
Thomas Bernard 2018-11-26 10:56:05 +01:00
parent 8a3860611d
commit cd5961ce6f
2 changed files with 6 additions and 6 deletions

View File

@ -1319,7 +1319,7 @@ void Print_counter(short x,short y,const char * str,byte text_color,byte backgro
/// center the lines, but the carriage returns have to be explicit. /// center the lines, but the carriage returns have to be explicit.
/// The function will clip the message in case of problem. /// The function will clip the message in case of problem.
/// @return 1 if user pressed OK, 0 if CANCEL /// @return 1 if user pressed OK, 0 if CANCEL
byte Confirmation_box(char * message) byte Confirmation_box(const char * message)
{ {
short clicked_button; short clicked_button;
word window_width = 120; word window_width = 120;
@ -1398,7 +1398,7 @@ byte Confirmation_box(char * message)
/// Window that allows you to enter a single value /// Window that allows you to enter a single value
int Requester_window(char* message, int initial_value) int Requester_window(const char* message, int initial_value)
{ {
short clicked_button = 0; short clicked_button = 0;
word window_width; word window_width;
@ -1441,7 +1441,7 @@ int Requester_window(char* message, int initial_value)
/// Window that show a warning message and wait for a click on the OK button /// Window that show a warning message and wait for a click on the OK button
void Warning_message(char * message) void Warning_message(const char * message)
{ {
short clicked_button; short clicked_button;
word window_width; word window_width;

View File

@ -77,11 +77,11 @@ void Print_coordinates(void);
void Print_filename(void); void Print_filename(void);
void Print_counter(short x,short y,const char * str,byte text_color,byte background_color); void Print_counter(short x,short y,const char * str,byte text_color,byte background_color);
byte Confirmation_box(char * message); byte Confirmation_box(const char * message);
void Warning_message(char * message); void Warning_message(const char * message);
void Warning_with_format(const char * message, ...); void Warning_with_format(const char * message, ...);
void Verbose_message(const char * caption, const char * message); void Verbose_message(const char * caption, const char * message);
int Requester_window(char* message, int initial_value); int Requester_window(const char* message, int initial_value);
void Display_image_limits(void); void Display_image_limits(void);
void Display_all_screen(void); void Display_all_screen(void);