aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2002-11-06 11:02:03 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-11-06 11:02:03 +0800
commit622d898921c6482079bab8ba9e59bd7e2d666c63 (patch)
tree649f836226bab1e82e3fec41ce935abddebe62f7
parent5fbe18400561be7fdd697a94175e406567a9ef38 (diff)
downloadgsoc2013-evolution-622d898921c6482079bab8ba9e59bd7e2d666c63.tar
gsoc2013-evolution-622d898921c6482079bab8ba9e59bd7e2d666c63.tar.gz
gsoc2013-evolution-622d898921c6482079bab8ba9e59bd7e2d666c63.tar.bz2
gsoc2013-evolution-622d898921c6482079bab8ba9e59bd7e2d666c63.tar.lz
gsoc2013-evolution-622d898921c6482079bab8ba9e59bd7e2d666c63.tar.xz
gsoc2013-evolution-622d898921c6482079bab8ba9e59bd7e2d666c63.tar.zst
gsoc2013-evolution-622d898921c6482079bab8ba9e59bd7e2d666c63.zip
build fixes
svn path=/trunk/; revision=18576
-rw-r--r--filter/Makefile.am3
-rw-r--r--filter/filter-datespec.c60
2 files changed, 27 insertions, 36 deletions
diff --git a/filter/Makefile.am b/filter/Makefile.am
index d832c3b1e0..0752a0bd18 100644
--- a/filter/Makefile.am
+++ b/filter/Makefile.am
@@ -7,9 +7,6 @@ INCLUDES = \
-I $(top_srcdir)/camel \
-I $(top_srcdir)/e-util \
-I $(top_srcdir)/shell \
- -I $(top_srcdir)/camel/providers/mbox \
- -I $(top_builddir)/shell \
- -I $(GNOME_INCLUDEDIR) \
-DFILTER_GLADEDIR=\"$(gladedir)\" \
-DG_LOG_DOMAIN=\"filter\" \
$(LIBFILTER_CFLAGS)
diff --git a/filter/filter-datespec.c b/filter/filter-datespec.c
index a0ac318f6f..247a3c1a90 100644
--- a/filter/filter-datespec.c
+++ b/filter/filter-datespec.c
@@ -29,19 +29,11 @@
#include <stdlib.h>
#include <time.h>
#include <math.h>
-#include <glib.h>
-#include <gtk/gtkcalendar.h>
-#include <gtk/gtklabel.h>
-#include <gtk/gtkmenu.h>
-#include <gtk/gtkmenuitem.h>
-#include <gtk/gtkoptionmenu.h>
-#include <gtk/gtkspinbutton.h>
-#include <gtk/gtknotebook.h>
-#include <libgnome/gnome-defs.h>
+
+#include <gtk/gtk.h>
#include <libgnome/gnome-i18n.h>
#include <libgnomeui/gnome-dialog.h>
#include <libgnomeui/gnome-dialog-util.h>
-#include <libgnomeui/gnome-stock.h>
#include <glade/glade.h>
#include "filter-datespec.h"
@@ -146,7 +138,7 @@ filter_datespec_init (FilterDatespec *fd)
}
static void
-filter_datespec_finalise (GtkObject *obj)
+filter_datespec_finalise (GObject *obj)
{
FilterDatespec *fd = (FilterDatespec *) obj;
@@ -378,9 +370,9 @@ set_option_type (GtkMenu *menu, FilterDatespec *fds)
GtkWidget *w;
/* ugh, no other way to 'get_history' */
- w = gtk_menu_get_active(menu);
- fds->priv->type = g_list_index(GTK_MENU_SHELL(menu)->children, w);
- gtk_notebook_set_page((GtkNotebook*)fds->priv->notebook_type, fds->priv->type);
+ w = gtk_menu_get_active (menu);
+ fds->priv->type = g_list_index (GTK_MENU_SHELL (menu)->children, w);
+ gtk_notebook_set_page ((GtkNotebook*) fds->priv->notebook_type, fds->priv->type);
}
static void
@@ -388,18 +380,18 @@ set_option_relative (GtkMenu *menu, FilterDatespec *fds)
{
GtkWidget *w;
- w = gtk_menu_get_active(menu);
- fds->priv->span = g_list_index(GTK_MENU_SHELL(menu)->children, w);
+ w = gtk_menu_get_active (menu);
+ fds->priv->span = g_list_index (GTK_MENU_SHELL (menu)->children, w);
}
static void
-dialogue_clicked(GnomeDialog *gd, int button, FilterDatespec *fds)
+dialog_clicked (GnomeDialog *gd, int button, FilterDatespec *fds)
{
if (button != 0)
return;
- get_values(fds);
- set_button(fds);
+ get_values (fds);
+ set_button (fds);
}
static void
@@ -410,30 +402,32 @@ button_clicked (GtkButton *button, FilterDatespec *fds)
GtkWidget *w, *x;
GladeXML *gui;
- gui = glade_xml_new(FILTER_GLADEDIR "/filter.glade", "filter_datespec");
- w = glade_xml_get_widget(gui, "filter_datespec");
+ gui = glade_xml_new (FILTER_GLADEDIR "/filter.glade", "filter_datespec", NULL);
+ w = glade_xml_get_widget (gui, "filter_datespec");
gd = (GnomeDialog *) gnome_dialog_new (_("Select a time to compare against"),
GNOME_STOCK_BUTTON_OK,
GNOME_STOCK_BUTTON_CANCEL,
NULL);
- p->notebook_type = glade_xml_get_widget(gui, "notebook_type");
- p->option_type = glade_xml_get_widget(gui, "option_type");
- p->calendar_specify = glade_xml_get_widget(gui, "calendar_specify");
- p->spin_relative = glade_xml_get_widget(gui, "spin_relative");
- p->option_relative = glade_xml_get_widget(gui, "option_relative");
+ p->notebook_type = glade_xml_get_widget (gui, "notebook_type");
+ p->option_type = glade_xml_get_widget (gui, "option_type");
+ p->calendar_specify = glade_xml_get_widget (gui, "calendar_specify");
+ p->spin_relative = glade_xml_get_widget (gui, "spin_relative");
+ p->option_relative = glade_xml_get_widget (gui, "option_relative");
- set_values(fds);
+ set_values (fds);
- g_signal_connect (GTK_OPTION_MENU (p->option_type)->menu, "deactivate", set_option_type, fds);
- g_signal_connect (GTK_OPTION_MENU (p->option_relative)->menu, "deactivate", set_option_relative, fds);
+ g_signal_connect (GTK_OPTION_MENU (p->option_type)->menu, "deactivate",
+ GTK_SIGNAL_FUNC (set_option_type), fds);
+ g_signal_connect (GTK_OPTION_MENU (p->option_relative)->menu, "deactivate",
+ GTK_SIGNAL_FUNC (set_option_relative), fds);
- gtk_box_pack_start ((GtkBox *)gd->vbox, w, TRUE, TRUE, 3);
+ gtk_box_pack_start ((GtkBox *) gd->vbox, w, TRUE, TRUE, 3);
- g_signal_connect (gd, "clicked", dialogue_clicked, fds);
+ g_signal_connect (gd, "clicked", GTK_SIGNAL_FUNC (dialog_clicked), fds);
- gnome_dialog_run_and_close(gd);
+ gnome_dialog_run_and_close (gd);
}
static GtkWidget *
@@ -448,7 +442,7 @@ get_widget (FilterElement *fe)
button = gtk_button_new();
gtk_container_add (GTK_CONTAINER (button), fds->priv->label_button);
- gtk_signal_connect (GTK_OBJECT (button), "clicked", button_clicked, fds);
+ g_signal_connect (button, "clicked", GTK_SIGNAL_FUNC (button_clicked), fds);
gtk_widget_show (button);
gtk_widget_show (fds->priv->label_button);