summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralejandro-colomar <colomar.6.4.3@gmail.com>2019-06-27 19:11:22 +0200
committeralejandro-colomar <colomar.6.4.3@gmail.com>2019-06-27 19:11:22 +0200
commit14ad9b90281b6deb990143c2251e16a69e684ec1 (patch)
treeffbe9c45e16022542877eddbb7921130c88f5b21
parent1d8b7aeafa8d312c438ba7eca8b8e2d71de249ea (diff)
Update libalx
-rw-r--r--src/user/tui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/user/tui.c b/src/user/tui.c
index bad2574..688bf8c 100644
--- a/src/user/tui.c
+++ b/src/user/tui.c
@@ -105,8 +105,8 @@ void user_tui_fname (const char *restrict fpath,
w = 75;
r = 10;
- alx_w_get_fname(fpath, fname, false, w, r, "File name:", "Valid extensions: .bmp .dib .jpeg .png .pbm .pgm .ppm .tiff",
- 2);
+ alx_ncurses_get_fname(fpath, fname, false, w, r, "File name:",
+ "Valid extensions: .bmp .dib .jpeg .png .pbm .pgm .ppm .tiff", 2);
}
void user_tui_show_log (const char *restrict title,
@@ -132,7 +132,7 @@ double user_tui_getdbl (double m, double def, double M,
w = 75;
r = 10;
- return alx_w_get_dbl(m, def, M, w, r, title, help, 2);
+ return alx_ncurses_get_dbl(m, def, M, w, r, title, help, 2);
}
int user_tui_getint (int m, int def, int M,
@@ -144,7 +144,7 @@ int user_tui_getint (int m, int def, int M,
w = 75;
r = 10;
- return alx_w_get_int(m, def, M, w, r, title, help, 2);
+ return alx_ncurses_get_int(m, def, M, w, r, title, help, 2);
}
void user_tui_show_ocr (void)