summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Smith <gnome@nextreality.net>2006-02-12 23:01:34 +0000
committerBrent Smith <bmsmith@src.gnome.org>2006-02-12 23:01:34 +0000
commitbf7ad6fc551be74e7bcd8d7167477793763d4c9c (patch)
treec05eaedd3bb7e27a0d9c5e425da2d24e4c94c959
parent2a2f3d3df0c409152556b61a3cf7cbed9a11c62c (diff)
downloadyelp-bf7ad6fc551be74e7bcd8d7167477793763d4c9c.tar.gz
Reverting DonS' a11y patch as it causes an abort in some cases when it
2006-02-12 Brent Smith <gnome@nextreality.net> * src/yelp-html.cpp: Reverting DonS' a11y patch as it causes an abort in some cases when it can't find the a11y registry.
-rw-r--r--ChangeLog6
-rw-r--r--src/yelp-html.cpp16
2 files changed, 6 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 66cd8582..8cd73785 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-02-12 Brent Smith <gnome@nextreality.net>
+
+ * src/yelp-html.cpp:
+ Reverting DonS' a11y patch as it causes an abort in some cases when it
+ can't find the a11y registry.
+
2006-02-11 Brent Smith <gnome@nextreality.net>
* src/yelp-info-parser.c: (open_info_file):
diff --git a/src/yelp-html.cpp b/src/yelp-html.cpp
index c6a2ec47..fbf9df2c 100644
--- a/src/yelp-html.cpp
+++ b/src/yelp-html.cpp
@@ -359,26 +359,11 @@ yelp_html_printf (YelpHtml *html, char *format, ...)
g_free (string);
}
-/* Fire "children_changed::add" event to refresh "UI-Grab" window of GOK,
- * this event is not fired when using gtk_moz_embed_xxx_stream,
- * see Mozilla bug #293670. Done in a timeout to allow mozilla to
- * actually draw to the screen */
-
-static gboolean
-timeout_update_gok (YelpHtml *html)
-{
- g_signal_emit_by_name (gtk_widget_get_accessible (GTK_WIDGET (html)),
- "children_changed::add", -1, NULL, NULL);
- return FALSE;
-}
-
void
yelp_html_close (YelpHtml *html)
{
d (g_print ("yelp_html_close\n"));
gtk_moz_embed_close_stream (GTK_MOZ_EMBED (html));
- g_timeout_add (2000, (GSourceFunc) timeout_update_gok,
- html);
}
gboolean
@@ -498,4 +483,3 @@ yelp_html_initialize (void)
gtk_moz_embed_set_comp_path (MOZILLA_HOME);
}
-