[gitg/gtk3] No longer use Gtk[HV]Box as it is deprecated



commit 7b58320106f496e3886983074479141c259d7b1d
Author: Garrett Regier <alias301 gmail com>
Date:   Sun Jun 12 13:25:43 2011 -0700

    No longer use Gtk[HV]Box as it is deprecated

 gitg/gitg-branch-actions.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gitg/gitg-branch-actions.c b/gitg/gitg-branch-actions.c
index fd31b0f..4edafb2 100644
--- a/gitg/gitg-branch-actions.c
+++ b/gitg/gitg-branch-actions.c
@@ -624,7 +624,7 @@ rename_dialog (GitgWindow *window, const gchar *oldname)
 
 	gtk_dialog_set_default_response (GTK_DIALOG (dlg), GTK_RESPONSE_OK);
 
-	GtkWidget *box = gtk_hbox_new (FALSE, 6);
+	GtkWidget *box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
 	GtkWidget *label = gtk_label_new (_("Name:"));
 	GtkWidget *entry = gtk_entry_new ();
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]