summaryrefslogtreecommitdiff
path: root/src/gui/tb/source.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/tb/source.c')
-rw-r--r--src/gui/tb/source.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/gui/tb/source.c b/src/gui/tb/source.c
index 9f041a1..61ad242 100644
--- a/src/gui/tb/source.c
+++ b/src/gui/tb/source.c
@@ -124,7 +124,6 @@ static void g_source_tbitem_class_init(GSourceTbItemClass *klass)
static void g_source_tbitem_init(GSourceTbItem *item)
{
GtkWidget *widget; /* Composant principal */
- GtkWidget *handlebox; /* Support relocalisable */
GtkWidget *hbox; /* Support interne */
GtkWidget *label; /* Etiquette d'introduction */
GtkWidget *comboboxentry; /* Liste de fichiers */
@@ -134,13 +133,9 @@ static void g_source_tbitem_init(GSourceTbItem *item)
G_EDITOR_ITEM(item)->widget = widget;
- handlebox = gtk_handle_box_new();
- gtk_widget_show(handlebox);
- gtk_container_add(GTK_CONTAINER(widget), handlebox);
-
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 8);
gtk_widget_show(hbox);
- gtk_container_add(GTK_CONTAINER(handlebox), hbox);
+ gtk_container_add(GTK_CONTAINER(widget), hbox);
label = qck_create_label(G_OBJECT(widget), "label", _(" Source: "));
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);