Fix the curses_get_info() function which was incorrectly named.
This commit is contained in:
@@ -9,6 +9,7 @@ v0.5dev (ongoing development)
|
|||||||
- Remove deprecated CFontz633 driver. Use CFontzPacket with Model=633 instead!
|
- Remove deprecated CFontz633 driver. Use CFontzPacket with Model=633 instead!
|
||||||
+ new driver: glcd unified graphic display driver (M. Dolze)
|
+ new driver: glcd unified graphic display driver (M. Dolze)
|
||||||
* curses: Fix missed keystrokes (from Debian)
|
* curses: Fix missed keystrokes (from Debian)
|
||||||
|
* curses: Correct the name of the info function.
|
||||||
|
|
||||||
v0.5.5
|
v0.5.5
|
||||||
+ sed1330 driver: Add support for HG25504 (L. Lagendijk)
|
+ sed1330 driver: Add support for HG25504 (L. Lagendijk)
|
||||||
|
|||||||
@@ -669,9 +669,8 @@ curses_get_key (Driver *drvthis)
|
|||||||
* \return Constant string with information.
|
* \return Constant string with information.
|
||||||
*/
|
*/
|
||||||
MODULE_EXPORT const char *
|
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";
|
static char *info_string = "curses driver";
|
||||||
|
|
||||||
return info_string;
|
return info_string;
|
||||||
|
|||||||
@@ -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 void curses_backlight (Driver *drvthis, int on);
|
||||||
|
|
||||||
MODULE_EXPORT const char *curses_get_key (Driver *drvthis);
|
MODULE_EXPORT const char *curses_get_key (Driver *drvthis);
|
||||||
|
MODULE_EXPORT const char *curses_get_info(Driver *drvthis);
|
||||||
|
|
||||||
/* Default settings for config file parsing */
|
/* Default settings for config file parsing */
|
||||||
#define CONF_DEF_FOREGR "blue"
|
#define CONF_DEF_FOREGR "blue"
|
||||||
|
|||||||
Reference in New Issue
Block a user