Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 710098
Collapse All | Expand All

(-)a/src/configure.c (+2 lines)
Lines 44-49 gint cfg_action = DEFAULT; Link Here
44
gchar **cfg_lines = NULL;
44
gchar **cfg_lines = NULL;
45
FILE *cfg_file = NULL;
45
FILE *cfg_file = NULL;
46
46
47
prefs_t *options;
48
47
void
49
void
48
print_help (const gchar *myname)
50
print_help (const gchar *myname)
49
{
51
{
(-)a/src/configure.h (-1 / +1 lines)
Lines 52-58 typedef struct Link Here
52
    GList *mountpoint_force;
52
    GList *mountpoint_force;
53
} prefs_t;
53
} prefs_t;
54
54
55
prefs_t *options;
55
extern prefs_t *options;
56
56
57
57
58
prefs_t *cfg_new (void);
58
prefs_t *cfg_new (void);
(-)a/src/interface.c (+10 lines)
Lines 31-36 Link Here
31
gint block_size_status;
31
gint block_size_status;
32
gint timeout_status;
32
gint timeout_status;
33
33
34
GtkWidget *mwindow;
35
34
GtkWidget *list_box, *list_scroll;
36
GtkWidget *list_box, *list_scroll;
35
37
36
GtkWidget *status_hbox;
38
GtkWidget *status_hbox;
Lines 39-44 GtkWidget *status_bar_timeout; Link Here
39
41
40
gint capacity_resize_timeout = 0;
42
gint capacity_resize_timeout = 0;
41
43
44
GtkTreeModel *list_treemodel;
45
GtkWidget *list_treeview;
46
47
GtkWidget *menu_frame;
48
GtkWidget *tool_frame;
49
50
gboolean gui_color_update;
51
42
void gui_capacity_column_resize_end (gpointer data)
52
void gui_capacity_column_resize_end (gpointer data)
43
{
53
{
44
    capacity_resize_timeout = 0;
54
    capacity_resize_timeout = 0;
(-)a/src/interface.h (-6 / +6 lines)
Lines 22-36 Link Here
22
#define GTKDISKFREE_INTERFACE_H
22
#define GTKDISKFREE_INTERFACE_H
23
#include <gtk/gtk.h>
23
#include <gtk/gtk.h>
24
#include "main.h"
24
#include "main.h"
25
GtkWidget *mwindow;
25
extern GtkWidget *mwindow;
26
26
27
GtkTreeModel *list_treemodel;
27
extern GtkTreeModel *list_treemodel;
28
GtkWidget *list_treeview;
28
extern GtkWidget *list_treeview;
29
29
30
GtkWidget *menu_frame;
30
extern GtkWidget *menu_frame;
31
GtkWidget *tool_frame;
31
extern GtkWidget *tool_frame;
32
32
33
gint gui_color_update;
33
extern gboolean gui_color_update;
34
34
35
void gui_list_columns_disp_update (void);
35
void gui_list_columns_disp_update (void);
36
void gui_statusbar_timeout_update (GtkWidget *widget, order_t action);
36
void gui_statusbar_timeout_update (GtkWidget *widget, order_t action);

Return to bug 710098