Do as the comment says - move the variable to gtkglobals.

svn path=/trunk/; revision=38791
This commit is contained in:
Anders Broman 2011-08-30 07:33:24 +00:00
parent 4486bb9d85
commit f2e7cc9518
2 changed files with 3 additions and 2 deletions

View File

@ -33,8 +33,6 @@ extern "C" {
#include <epan/timestamp.h>
extern capture_file cfile;
/** @todo move this to the gtk dir */
extern gboolean auto_scroll_live;
#ifdef __cplusplus
}

View File

@ -51,4 +51,7 @@ extern GtkWidget *byte_nb_ptr_gbl;
/** The filter text entry in the filter toolbar. */
extern GtkWidget *main_display_filter_widget;
/** If autoscroll in live captures is active or not */
extern gboolean auto_scroll_live;
#endif