aboutsummaryrefslogtreecommitdiffstats
path: root/executive-summary/component/e-summary-url.c
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2000-12-12 04:00:24 +0800
committerIain Holmes <iain@src.gnome.org>2000-12-12 04:00:24 +0800
commitff47c653e0791c621b229bda7454795cd3a21217 (patch)
treef1c35b583f54e313102ea8c01d6707a3a588a6d2 /executive-summary/component/e-summary-url.c
parentcd4860d5678704047ac2882a74b2ba8e95b22737 (diff)
downloadgsoc2013-evolution-ff47c653e0791c621b229bda7454795cd3a21217.tar
gsoc2013-evolution-ff47c653e0791c621b229bda7454795cd3a21217.tar.gz
gsoc2013-evolution-ff47c653e0791c621b229bda7454795cd3a21217.tar.bz2
gsoc2013-evolution-ff47c653e0791c621b229bda7454795cd3a21217.tar.lz
gsoc2013-evolution-ff47c653e0791c621b229bda7454795cd3a21217.tar.xz
gsoc2013-evolution-ff47c653e0791c621b229bda7454795cd3a21217.tar.zst
gsoc2013-evolution-ff47c653e0791c621b229bda7454795cd3a21217.zip
Only allow one e_summary_rebuild_page to be queued.
Fixes the race condition that having one rdf-summary seemed to cause. svn path=/trunk/; revision=6912
Diffstat (limited to 'executive-summary/component/e-summary-url.c')
-rw-r--r--executive-summary/component/e-summary-url.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/executive-summary/component/e-summary-url.c b/executive-summary/component/e-summary-url.c
index dd3f6deb4e..ae218cf7c8 100644
--- a/executive-summary/component/e-summary-url.c
+++ b/executive-summary/component/e-summary-url.c
@@ -427,7 +427,7 @@ e_summary_url_click (GtkWidget *widget,
break;
e_summary_remove_window (esummary, window);
- e_summary_rebuild_page (esummary);
+ e_summary_queue_rebuild (esummary);
break;
case PROTOCOL_CONFIGURE:
@@ -489,7 +489,7 @@ e_summary_url_click (GtkWidget *widget,
break;
e_summary_window_move_left (esummary, window);
- e_summary_rebuild_page (esummary);
+ e_summary_queue_rebuild (esummary);
break;
case PROTOCOL_RIGHT:
@@ -499,7 +499,7 @@ e_summary_url_click (GtkWidget *widget,
break;
e_summary_window_move_right (esummary, window);
- e_summary_rebuild_page (esummary);
+ e_summary_queue_rebuild (esummary);
break;
case PROTOCOL_UP:
@@ -509,7 +509,7 @@ e_summary_url_click (GtkWidget *widget,
break;
e_summary_window_move_up (esummary, window);
- e_summary_rebuild_page (esummary);
+ e_summary_queue_rebuild (esummary);
break;
case PROTOCOL_DOWN:
@@ -519,7 +519,7 @@ e_summary_url_click (GtkWidget *widget,
break;
e_summary_window_move_down (esummary, window);
- e_summary_rebuild_page (esummary);
+ e_summary_queue_rebuild (esummary);
break;
case PROTOCOL_NONE: