From cd27672f61855eb5f5a522bbc3971caabe169d42 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Tue, 6 Nov 2012 18:33:37 +0100 Subject: Bug #656143 - Stop using deprecated Gtk[HV]Box(Class) --- widgets/misc/e-alert-bar.c | 2 +- widgets/misc/e-attachment-bar.h | 4 ++-- widgets/misc/e-attachment-button.h | 4 ++-- widgets/misc/e-dateedit.h | 4 ++-- widgets/misc/e-image-chooser.h | 4 ++-- widgets/misc/e-preview-pane.h | 4 ++-- widgets/misc/e-search-bar.h | 4 ++-- widgets/misc/e-url-entry.h | 4 ++-- widgets/table/e-table-field-chooser.h | 4 ++-- 9 files changed, 17 insertions(+), 17 deletions(-) (limited to 'widgets') diff --git a/widgets/misc/e-alert-bar.c b/widgets/misc/e-alert-bar.c index eb4afdde8c..7700ef5f2a 100644 --- a/widgets/misc/e-alert-bar.c +++ b/widgets/misc/e-alert-bar.c @@ -292,7 +292,7 @@ alert_bar_constructed (GObject *object) static GtkSizeRequestMode alert_bar_get_request_mode (GtkWidget *widget) { - /* GtkHBox does width-for-height by default. But we + /* GtkBox does width-for-height by default. But we * want the alert bar to be as short as possible. */ return GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH; } diff --git a/widgets/misc/e-attachment-bar.h b/widgets/misc/e-attachment-bar.h index 9f40973fe9..3542f217df 100644 --- a/widgets/misc/e-attachment-bar.h +++ b/widgets/misc/e-attachment-bar.h @@ -51,12 +51,12 @@ typedef struct _EAttachmentBarClass EAttachmentBarClass; typedef struct _EAttachmentBarPrivate EAttachmentBarPrivate; struct _EAttachmentBar { - GtkVBox parent; + GtkBox parent; EAttachmentBarPrivate *priv; }; struct _EAttachmentBarClass { - GtkVBoxClass parent_class; + GtkBoxClass parent_class; }; GType e_attachment_bar_get_type (void); diff --git a/widgets/misc/e-attachment-button.h b/widgets/misc/e-attachment-button.h index b8a0cbb16d..56adf704f0 100644 --- a/widgets/misc/e-attachment-button.h +++ b/widgets/misc/e-attachment-button.h @@ -52,12 +52,12 @@ typedef struct _EAttachmentButtonClass EAttachmentButtonClass; typedef struct _EAttachmentButtonPrivate EAttachmentButtonPrivate; struct _EAttachmentButton { - GtkHBox parent; + GtkBox parent; EAttachmentButtonPrivate *priv; }; struct _EAttachmentButtonClass { - GtkHBoxClass parent_class; + GtkBoxClass parent_class; }; GType e_attachment_button_get_type (void); diff --git a/widgets/misc/e-dateedit.h b/widgets/misc/e-dateedit.h index 7898c49907..7da72ec975 100644 --- a/widgets/misc/e-dateedit.h +++ b/widgets/misc/e-dateedit.h @@ -76,12 +76,12 @@ typedef struct tm (*EDateEditGetTimeCallback) gpointer data); struct _EDateEdit { - GtkHBox hbox; + GtkBox hbox; EDateEditPrivate *priv; }; struct _EDateEditClass { - GtkHBoxClass parent_class; + GtkBoxClass parent_class; /* Signals */ void (*changed) (EDateEdit *dedit); diff --git a/widgets/misc/e-image-chooser.h b/widgets/misc/e-image-chooser.h index 3338e16cd7..cf983c641d 100644 --- a/widgets/misc/e-image-chooser.h +++ b/widgets/misc/e-image-chooser.h @@ -50,12 +50,12 @@ typedef struct _EImageChooserClass EImageChooserClass; typedef struct _EImageChooserPrivate EImageChooserPrivate; struct _EImageChooser { - GtkVBox parent; + GtkBox parent; EImageChooserPrivate *priv; }; struct _EImageChooserClass { - GtkVBoxClass parent_class; + GtkBoxClass parent_class; /* signals */ void (*changed) (EImageChooser *chooser); diff --git a/widgets/misc/e-preview-pane.h b/widgets/misc/e-preview-pane.h index 1313193d97..01e216c1cc 100644 --- a/widgets/misc/e-preview-pane.h +++ b/widgets/misc/e-preview-pane.h @@ -52,12 +52,12 @@ typedef struct _EPreviewPaneClass EPreviewPaneClass; typedef struct _EPreviewPanePrivate EPreviewPanePrivate; struct _EPreviewPane { - GtkVBox parent; + GtkBox parent; EPreviewPanePrivate *priv; }; struct _EPreviewPaneClass { - GtkVBoxClass parent_class; + GtkBoxClass parent_class; /* Signals */ void (*show_search_bar) (EPreviewPane *preview_pane); diff --git a/widgets/misc/e-search-bar.h b/widgets/misc/e-search-bar.h index 4df8c97e6d..939a476e17 100644 --- a/widgets/misc/e-search-bar.h +++ b/widgets/misc/e-search-bar.h @@ -51,12 +51,12 @@ typedef struct _ESearchBarClass ESearchBarClass; typedef struct _ESearchBarPrivate ESearchBarPrivate; struct _ESearchBar { - GtkHBox parent; + GtkBox parent; ESearchBarPrivate *priv; }; struct _ESearchBarClass { - GtkHBoxClass parent_class; + GtkBoxClass parent_class; /* Signals */ void (*changed) (ESearchBar *search_bar); diff --git a/widgets/misc/e-url-entry.h b/widgets/misc/e-url-entry.h index 119fe47b18..2393f823ac 100644 --- a/widgets/misc/e-url-entry.h +++ b/widgets/misc/e-url-entry.h @@ -38,13 +38,13 @@ typedef struct _EUrlEntryPrivate EUrlEntryPrivate; typedef struct _EUrlEntryClass EUrlEntryClass; struct _EUrlEntry { - GtkHBox parent; + GtkBox parent; EUrlEntryPrivate *priv; }; struct _EUrlEntryClass { - GtkHBoxClass parent_class; + GtkBoxClass parent_class; }; GType e_url_entry_get_type (void); diff --git a/widgets/table/e-table-field-chooser.h b/widgets/table/e-table-field-chooser.h index 743bf9eabe..a594fa2ae5 100644 --- a/widgets/table/e-table-field-chooser.h +++ b/widgets/table/e-table-field-chooser.h @@ -53,7 +53,7 @@ typedef struct _ETableFieldChooser ETableFieldChooser; typedef struct _ETableFieldChooserClass ETableFieldChooserClass; struct _ETableFieldChooser { - GtkVBox parent; + GtkBox parent; /* item specific fields */ GnomeCanvas *canvas; @@ -68,7 +68,7 @@ struct _ETableFieldChooser { }; struct _ETableFieldChooserClass { - GtkVBoxClass parent_class; + GtkBoxClass parent_class; }; GType e_table_field_chooser_get_type (void) G_GNUC_CONST; -- cgit