diff options
author | Iain Holmes <iain@src.gnome.org> | 2000-12-11 23:47:01 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2000-12-11 23:47:01 +0800 |
commit | b3ce14cf25ba9ea7d7a6f297c1cd479d26f64894 (patch) | |
tree | f49a6a85d2d8d455cdf9c94fd6ae3d8ce3aa69df /executive-summary/component | |
parent | 96fb2423d02a5ca60fa61765c63817c816ee267f (diff) | |
download | gsoc2013-evolution-b3ce14cf25ba9ea7d7a6f297c1cd479d26f64894.tar gsoc2013-evolution-b3ce14cf25ba9ea7d7a6f297c1cd479d26f64894.tar.gz gsoc2013-evolution-b3ce14cf25ba9ea7d7a6f297c1cd479d26f64894.tar.bz2 gsoc2013-evolution-b3ce14cf25ba9ea7d7a6f297c1cd479d26f64894.tar.lz gsoc2013-evolution-b3ce14cf25ba9ea7d7a6f297c1cd479d26f64894.tar.xz gsoc2013-evolution-b3ce14cf25ba9ea7d7a6f297c1cd479d26f64894.tar.zst gsoc2013-evolution-b3ce14cf25ba9ea7d7a6f297c1cd479d26f64894.zip |
Changes to the HTML file to add an entry box.
Changed to use the new BonoboPropertyControl methods, and changed
executive-summary-html-view to use the same idea.
Added rdf-summary to the .cvsignore, and put a timeout so that it can return
imediatly if there is a hold up on the connection.
svn path=/trunk/; revision=6905
Diffstat (limited to 'executive-summary/component')
-rw-r--r-- | executive-summary/component/Makefile.am | 1 | ||||
-rw-r--r-- | executive-summary/component/e-summary-url.c | 2 | ||||
-rw-r--r-- | executive-summary/component/e-summary.c | 3 |
3 files changed, 4 insertions, 2 deletions
diff --git a/executive-summary/component/Makefile.am b/executive-summary/component/Makefile.am index 9c0a375f68..c9931b19c0 100644 --- a/executive-summary/component/Makefile.am +++ b/executive-summary/component/Makefile.am @@ -67,6 +67,7 @@ evolution_executive_summary_LDADD = \ $(top_builddir)/executive-summary/evolution-services/libevolution-services.la \ $(BONOBO_VFS_GNOME_LIBS) \ $(EXTRA_GNOME_LIBS) \ + -lgal \ $(GTKHTML_LIBS) \ $(UNICODE_LIBS) diff --git a/executive-summary/component/e-summary-url.c b/executive-summary/component/e-summary-url.c index d53b21ec4c..dd3f6deb4e 100644 --- a/executive-summary/component/e-summary-url.c +++ b/executive-summary/component/e-summary-url.c @@ -359,7 +359,7 @@ property_event (BonoboListener *listener, gpointer user_data) { PropertyDialog *data = (PropertyDialog *) user_data; - if (strcmp (event_name, "property_box_changed") == 0) { + if (strcmp (event_name, BONOBO_PROPERTY_CONTROL_CHANGED) == 0) { gnome_property_box_changed (GNOME_PROPERTY_BOX (data->dialog)); return; } diff --git a/executive-summary/component/e-summary.c b/executive-summary/component/e-summary.c index 587b063e6a..925f4501fe 100644 --- a/executive-summary/component/e-summary.c +++ b/executive-summary/component/e-summary.c @@ -44,6 +44,7 @@ #include <evolution-services/executive-summary-component.h> #include <evolution-services/executive-summary-component-factory-client.h> +#include <evolution-services/executive-summary-html-view.h> #define PARENT_TYPE (gtk_vbox_get_type ()) @@ -568,7 +569,7 @@ html_event (BonoboListener *listener, ESummaryWindow *window = (ESummaryWindow *) user_data; g_print ("Event: %s\n", event_name); - if (strcmp (event_name, "html_changed") != 0) { + if (strcmp (event_name, EXECUTIVE_SUMMARY_HTML_VIEW_HTML_CHANGED) != 0) { return; } |