aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-12-20 00:54:46 +0800
committerChristian Persch <chpe@src.gnome.org>2004-12-20 00:54:46 +0800
commita050d6bc3f0d4f73499cc7a995e154428ca08702 (patch)
tree0c5a1a2340e9a2cded5d129f8139b38dd498a98f /lib/egg
parentd67465faa4318f7d774ef2d41d78c04f4caae264 (diff)
downloadgsoc2013-epiphany-a050d6bc3f0d4f73499cc7a995e154428ca08702.tar
gsoc2013-epiphany-a050d6bc3f0d4f73499cc7a995e154428ca08702.tar.gz
gsoc2013-epiphany-a050d6bc3f0d4f73499cc7a995e154428ca08702.tar.bz2
gsoc2013-epiphany-a050d6bc3f0d4f73499cc7a995e154428ca08702.tar.lz
gsoc2013-epiphany-a050d6bc3f0d4f73499cc7a995e154428ca08702.tar.xz
gsoc2013-epiphany-a050d6bc3f0d4f73499cc7a995e154428ca08702.tar.zst
gsoc2013-epiphany-a050d6bc3f0d4f73499cc7a995e154428ca08702.zip
Remove inline help. Fixes bug #137603.
2004-12-19 Christian Persch <chpe@cvs.gnome.org> * lib/egg/egg-toolbar-editor.c: (setup_editor): Remove inline help. Fixes bug #137603.
Diffstat (limited to 'lib/egg')
-rwxr-xr-xlib/egg/egg-toolbar-editor.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/egg/egg-toolbar-editor.c b/lib/egg/egg-toolbar-editor.c
index 43003d0bf..f17dd41a5 100755
--- a/lib/egg/egg-toolbar-editor.c
+++ b/lib/egg/egg-toolbar-editor.c
@@ -563,11 +563,6 @@ static void
setup_editor (EggToolbarEditor *editor)
{
GtkWidget *scrolled_window;
- GtkWidget *label_hbox;
- GtkWidget *image;
- GtkWidget *label;
-
- g_return_if_fail (EGG_IS_TOOLBAR_EDITOR (editor));
gtk_container_set_border_width (GTK_CONTAINER (editor), 12);
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
@@ -576,18 +571,6 @@ setup_editor (EggToolbarEditor *editor)
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
gtk_box_pack_start (GTK_BOX (editor), scrolled_window, TRUE, TRUE, 0);
- label_hbox = gtk_hbox_new (FALSE, 6);
- gtk_widget_show (label_hbox);
- gtk_box_pack_start (GTK_BOX (editor), label_hbox, FALSE, FALSE, 0);
- image =
- gtk_image_new_from_stock (GTK_STOCK_DIALOG_INFO, GTK_ICON_SIZE_DIALOG);
- gtk_widget_show (image);
- gtk_box_pack_start (GTK_BOX (label_hbox), image, FALSE, FALSE, 0);
- label = gtk_label_new (_("Drag an item onto the toolbars above to add it, "
- "from the toolbars in the items table to remove it."));
- gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
- gtk_widget_show (label);
- gtk_box_pack_start (GTK_BOX (label_hbox), label, FALSE, TRUE, 0);
}
static void