diff options
-rw-r--r-- | lib/ephy-gui.c | 2 | ||||
-rw-r--r-- | lib/ephy-node-filter.c | 2 | ||||
-rw-r--r-- | src/ephy-tab.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/ephy-gui.c b/lib/ephy-gui.c index 622c145c2..344801b3d 100644 --- a/lib/ephy-gui.c +++ b/lib/ephy-gui.c @@ -148,7 +148,7 @@ ephy_gui_menu_position_on_panel (GtkMenu *menu, gtk_widget_size_request (GTK_WIDGET (menu), &requisition); if (GTK_WIDGET_NO_WINDOW (widget)) - {g_print ("NOT WINDOW!\n"); + { *x += widget->allocation.x; *y += widget->allocation.y; } diff --git a/lib/ephy-node-filter.c b/lib/ephy-node-filter.c index 6e87a471e..4cffc46c7 100644 --- a/lib/ephy-node-filter.c +++ b/lib/ephy-node-filter.c @@ -441,7 +441,7 @@ ephy_node_filter_expression_evaluate (EphyNodeFilterExpression *exp, prop = ephy_node_get_property_int (node, exp->args.prop_args.prop_id); - g_print ("%d %d\n", prop, exp->args.prop_args.second_arg.number); + return (prop < exp->args.prop_args.second_arg.number); } default: diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 1cce14579..1a461ed79 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -1088,7 +1088,7 @@ ephy_tab_document_type_cb (EphyEmbed *embed, if (tab->priv->document_type != type) { tab->priv->document_type = type; -g_print ("new doc type %d\n", type); + g_object_notify (G_OBJECT (tab), "document-type"); } } |