aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/status-bar.h
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-09-11 21:32:50 +0000
committerGravatar Brendan Taylor <whateley@gmail.com>2011-09-11 21:32:50 +0000
commitd9d2cf8190c0f5ac9ed5f009c8ef6b52f78912a7 (patch)
treebdd73dcfde438899dc0259af4a942fb958b2a260 /src/status-bar.h
parent5ad69c8be2eec48fec103d8b7aeac098082e7e02 (diff)
GTK+ 3.1 has deprecated VBox and HBox
Diffstat (limited to 'src/status-bar.h')
-rw-r--r--src/status-bar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/status-bar.h b/src/status-bar.h
index e972701..cae8905 100644
--- a/src/status-bar.h
+++ b/src/status-bar.h
@@ -14,14 +14,14 @@ typedef struct _UzblStatusBar UzblStatusBar;
typedef struct _UzblStatusBarClass UzblStatusBarClass;
struct _UzblStatusBar {
- GtkHBox hbox;
+ GtkBox box;
GtkWidget *left_label;
GtkWidget *right_label;
};
struct _UzblStatusBarClass {
- GtkHBoxClass parent_class;
+ GtkBoxClass parent_class;
};
GType uzbl_status_bar_get_type (void) G_GNUC_CONST;