remove references to obsolete init_*() functions
This commit is contained in:
@@ -56,15 +56,6 @@ drivers_string( int x, int y, char * string );
|
|||||||
void
|
void
|
||||||
drivers_chr( int x, int y, char c );
|
drivers_chr( int x, int y, char c );
|
||||||
|
|
||||||
void
|
|
||||||
drivers_init_vbar(); /* TO BE REMOVED */
|
|
||||||
|
|
||||||
void
|
|
||||||
drivers_init_hbar(); /* TO BE REMOVED */
|
|
||||||
|
|
||||||
void
|
|
||||||
drivers_init_num(); /* TO BE REMOVED */
|
|
||||||
|
|
||||||
void
|
void
|
||||||
drivers_vbar( int x, int y, int len, int promille, int pattern );
|
drivers_vbar( int x, int y, int len, int promille, int pattern );
|
||||||
|
|
||||||
|
|||||||
@@ -227,7 +227,6 @@ render_frame (LinkedList * list,
|
|||||||
break;
|
break;
|
||||||
case WID_HBAR:
|
case WID_HBAR:
|
||||||
if (reset) {
|
if (reset) {
|
||||||
//drivers_init_hbar ();
|
|
||||||
reset = 0;
|
reset = 0;
|
||||||
}
|
}
|
||||||
if ((w->x > 0) && (w->y > 0) &&
|
if ((w->x > 0) && (w->y > 0) &&
|
||||||
@@ -257,7 +256,6 @@ render_frame (LinkedList * list,
|
|||||||
break;
|
break;
|
||||||
case WID_VBAR: /* FIXME: Vbars don't work in frames!*/
|
case WID_VBAR: /* FIXME: Vbars don't work in frames!*/
|
||||||
if (reset) {
|
if (reset) {
|
||||||
//drivers_init_vbar ();
|
|
||||||
reset = 0;
|
reset = 0;
|
||||||
}
|
}
|
||||||
if ((w->x > 0) && (w->y > 0)) {
|
if ((w->x > 0) && (w->y > 0)) {
|
||||||
@@ -503,7 +501,6 @@ render_frame (LinkedList * list,
|
|||||||
/* NOTE: y=10 means COLON (:)*/
|
/* NOTE: y=10 means COLON (:)*/
|
||||||
if ((w->x > 0) && (w->y >= 0) && (w->y <= 10)) {
|
if ((w->x > 0) && (w->y >= 0) && (w->y <= 10)) {
|
||||||
if (reset) {
|
if (reset) {
|
||||||
//drivers_init_num ();
|
|
||||||
reset = 0;
|
reset = 0;
|
||||||
}
|
}
|
||||||
drivers_num (w->x + left, w->y);
|
drivers_num (w->x + left, w->y);
|
||||||
|
|||||||
Reference in New Issue
Block a user