Fix the curses_get_info() function which was incorrectly named.

This commit is contained in:
mmdolze
2011-10-23 11:04:24 +00:00
parent 842a3195ef
commit 54755c80af
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -9,6 +9,7 @@ v0.5dev (ongoing development)
- Remove deprecated CFontz633 driver. Use CFontzPacket with Model=633 instead!
+ new driver: glcd unified graphic display driver (M. Dolze)
* curses: Fix missed keystrokes (from Debian)
* curses: Correct the name of the info function.
v0.5.5
+ sed1330 driver: Add support for HG25504 (L. Lagendijk)
+1 -2
View File
@@ -669,9 +669,8 @@ curses_get_key (Driver *drvthis)
* \return Constant string with information.
*/
MODULE_EXPORT const char *
text_get_info (Driver *drvthis)
curses_get_info (Driver *drvthis)
{
//PrivateData *p = drvthis->private_data;
static char *info_string = "curses driver";
return info_string;
+1
View File
@@ -19,6 +19,7 @@ MODULE_EXPORT int curses_icon (Driver *drvthis, int x, int y, int icon);
MODULE_EXPORT void curses_backlight (Driver *drvthis, int on);
MODULE_EXPORT const char *curses_get_key (Driver *drvthis);
MODULE_EXPORT const char *curses_get_info(Driver *drvthis);
/* Default settings for config file parsing */
#define CONF_DEF_FOREGR "blue"