aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2006-09-19 01:19:11 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2006-09-19 01:19:11 +0800
commit5222fa33968906e963bc6e4d58a48cf6e83c37d5 (patch)
tree86c6112a1281dd932a9eb707ecab314adb9740f9 /calendar
parent300f448794f8df0450e925702d03f710a7b5c439 (diff)
downloadgsoc2013-evolution-5222fa33968906e963bc6e4d58a48cf6e83c37d5.tar
gsoc2013-evolution-5222fa33968906e963bc6e4d58a48cf6e83c37d5.tar.gz
gsoc2013-evolution-5222fa33968906e963bc6e4d58a48cf6e83c37d5.tar.bz2
gsoc2013-evolution-5222fa33968906e963bc6e4d58a48cf6e83c37d5.tar.lz
gsoc2013-evolution-5222fa33968906e963bc6e4d58a48cf6e83c37d5.tar.xz
gsoc2013-evolution-5222fa33968906e963bc6e4d58a48cf6e83c37d5.tar.zst
gsoc2013-evolution-5222fa33968906e963bc6e4d58a48cf6e83c37d5.zip
Fixes #351332
2006-09-18 Matthew Barnes <mbarnes@redhat.com> Fixes #351332 * gui/cal-search-bar.c: * gui/e-cal-model-tasks.h: * gui/e-calendar-view.h: * gui/gnome-cal.h: * gui/dialogs/memo-page.h: Fix implicit function declarations. svn path=/trunk/; revision=32789
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog11
-rw-r--r--calendar/gui/cal-search-bar.c1
-rw-r--r--calendar/gui/dialogs/memo-page.h2
-rw-r--r--calendar/gui/e-cal-model-tasks.h1
-rw-r--r--calendar/gui/e-calendar-view.h12
-rw-r--r--calendar/gui/gnome-cal.h2
6 files changed, 29 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index b29c7537d5..33fb0d12c0 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,16 @@
2006-09-18 Matthew Barnes <mbarnes@redhat.com>
+ Fixes #351332
+
+ * gui/cal-search-bar.c:
+ * gui/e-cal-model-tasks.h:
+ * gui/e-calendar-view.h:
+ * gui/gnome-cal.h:
+ * gui/dialogs/memo-page.h:
+ Fix implicit function declarations.
+
+2006-09-18 Matthew Barnes <mbarnes@redhat.com>
+
** Fixes bug #352450
* gui/calendar-commands.c:
diff --git a/calendar/gui/cal-search-bar.c b/calendar/gui/cal-search-bar.c
index cdb9d2de42..501a762853 100644
--- a/calendar/gui/cal-search-bar.c
+++ b/calendar/gui/cal-search-bar.c
@@ -31,6 +31,7 @@
#include <gtk/gtksignal.h>
#include <libgnome/gnome-i18n.h>
#include <e-util/e-icon-factory.h>
+#include <libedataserver/e-categories.h>
#include "cal-search-bar.h"
typedef struct CALSearchBarItem {
diff --git a/calendar/gui/dialogs/memo-page.h b/calendar/gui/dialogs/memo-page.h
index 132db6ed22..dabbf3edbc 100644
--- a/calendar/gui/dialogs/memo-page.h
+++ b/calendar/gui/dialogs/memo-page.h
@@ -53,6 +53,8 @@ typedef struct {
GtkType memo_page_get_type (void);
MemoPage *memo_page_construct (MemoPage *epage);
MemoPage *memo_page_new (BonoboUIComponent *uic, CompEditorPageFlags flags);
+void memo_page_set_classification (MemoPage *page, ECalComponentClassification class);
+void memo_page_set_show_categories (MemoPage *page, gboolean state);
G_END_DECLS
diff --git a/calendar/gui/e-cal-model-tasks.h b/calendar/gui/e-cal-model-tasks.h
index 0c10f3a6fe..ab7db753bb 100644
--- a/calendar/gui/e-cal-model-tasks.h
+++ b/calendar/gui/e-cal-model-tasks.h
@@ -62,6 +62,7 @@ GType e_cal_model_tasks_get_type (void);
ECalModelTasks *e_cal_model_tasks_new (void);
void e_cal_model_tasks_mark_task_complete (ECalModelTasks *model, gint model_row);
+void e_cal_model_tasks_mark_task_incomplete (ECalModelTasks *model, gint model_row);
void e_cal_model_tasks_update_due_tasks (ECalModelTasks *model);
G_END_DECLS
diff --git a/calendar/gui/e-calendar-view.h b/calendar/gui/e-calendar-view.h
index bbf95da71e..c82da57488 100644
--- a/calendar/gui/e-calendar-view.h
+++ b/calendar/gui/e-calendar-view.h
@@ -166,6 +166,18 @@ void e_calendar_view_modify_and_send (ECalComponent *comp,
gboolean new);
gboolean e_calendar_view_get_tooltips (ECalendarViewEventData *data);
+
+void e_calendar_view_move_tip (GtkWidget *widget, int x, int y);
+
+#ifdef ENABLE_CAIRO
+void draw_curved_rectangle (cairo_t *cr,
+ double x0,
+ double y0,
+ double rect_width,
+ double rect_height,
+ double radius);
+#endif
+
G_END_DECLS
#endif
diff --git a/calendar/gui/gnome-cal.h b/calendar/gui/gnome-cal.h
index de17acbf9e..fc4fcd5847 100644
--- a/calendar/gui/gnome-cal.h
+++ b/calendar/gui/gnome-cal.h
@@ -198,6 +198,8 @@ void gnome_calendar_edit_appointment (GnomeCalendar *gcal,
const char* comp_uid,
const char* comp_rid);
+GtkWidget * gnome_calendar_get_tag (GnomeCalendar *gcal);
+
G_END_DECLS
#endif