summaryrefslogtreecommitdiff
path: root/error_utils.c
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2012-08-29 10:55:34 -0400
committerMichael J. Chudobiak <mjc@avtechpulse.com>2012-08-29 10:55:34 -0400
commitfacf818bfa54d1fc553cf06a0f22012ea033ace0 (patch)
tree254143d4d025f5b2d37af59e95470b48ba9421c4 /error_utils.c
parentb127640ef5f09b10a648701c52f950f3fe569ce6 (diff)
add some menu variables as globals, to remove FIXMEs
Diffstat (limited to 'error_utils.c')
-rw-r--r--error_utils.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/error_utils.c b/error_utils.c
index ec713cd..17bab15 100644
--- a/error_utils.c
+++ b/error_utils.c
@@ -13,6 +13,7 @@ END DESCRIPTION **********************************************************/
#include <string.h>
#include <glib/gprintf.h>
+#include <glib.h>
#include <math.h>
#include "globals.h"
#include "dummy_functions.h"
@@ -21,8 +22,6 @@ END DESCRIPTION **********************************************************/
/*** EndHeader */
-int Error_Screen=NO; //FIXME - should be a menu global?
-
void set_gpib_error_flags (int error_num);
void set_gpib_error_flags (int error_num)
@@ -137,7 +136,7 @@ void queue_error_and_display_on_LCD(int error_num)
{
gchar* response = NULL;
queue_error_and_get_text(&response, error_num);
- LCD_display_extended_message (response, 1);
+ LCD_display_extended_message (response, TRUE, TRUE);
}