Remove remaining references to EDS/ical

We can add this back using the Calendar.EventSource abstraction once
we are ready for it.

Signed-off-by: David Zeuthen <davidz@redhat.com>
This commit is contained in:
David Zeuthen 2010-12-20 14:49:20 -05:00
parent 6c80a35f8f
commit f3ad82442d
5 changed files with 0 additions and 20 deletions

View File

@ -63,7 +63,6 @@ GJS_MIN_VERSION=0.7
MUTTER_MIN_VERSION=2.91.0
GTK_MIN_VERSION=2.91.0
GIO_MIN_VERSION=2.25.9
LIBICAL_MIN_VERSION=0.43
# Collect more than 20 libraries for a prize!
PKG_CHECK_MODULES(MUTTER_PLUGIN, gio-2.0 >= $GIO_MIN_VERSION
@ -71,7 +70,6 @@ PKG_CHECK_MODULES(MUTTER_PLUGIN, gio-2.0 >= $GIO_MIN_VERSION
gtk+-3.0 >= $GTK_MIN_VERSION
mutter-plugins >= $MUTTER_MIN_VERSION
gjs-internals-1.0 >= $GJS_MIN_VERSION
libical >= $LIBICAL_MIN_VERSION
libgnome-menu $recorder_modules gconf-2.0
gdk-x11-3.0
clutter-x11-1.0 >= $CLUTTER_MIN_VERSION

View File

@ -243,7 +243,6 @@ function _relayout() {
// will be updated when it is next shown. We do the same for
// the calendar popdown.
overview.hide();
//panel.hideCalendar();
}
// metacity-clutter currently uses the same prefs as plain metacity,

View File

@ -864,10 +864,6 @@ Panel.prototype = {
this._rightBox.add(this._statusmenu.actor);
},
hideCalendar: function() {
this._clockButton.closeCalendar();
},
startupAnimation: function() {
this.actor.y = -this.actor.height;
Tweener.addTween(this.actor,

View File

@ -26,7 +26,6 @@
#include <X11/extensions/Xfixes.h>
#include <gjs/gjs-module.h>
#include <canberra.h>
#include <libical/ical.h>
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
@ -467,17 +466,6 @@ shell_global_set_stage_input_mode (ShellGlobal *global,
}
}
/**
* shell_global_icalcomponent_to_str:
*
* Wrap icalcomponent_as_ical_string_r
*/
char*
shell_global_icalcomponent_to_str (long icalcomp)
{
return icalcomponent_as_ical_string_r ((icalcomponent*)icalcomp);
}
/**
* shell_global_set_cursor:
* @global: A #ShellGlobal

View File

@ -100,7 +100,6 @@ void shell_global_get_pointer (ShellGlobal *global,
ClutterModifierType *mods);
GSettings *shell_global_get_settings (ShellGlobal *global);
char* shell_global_icalcomponent_to_str (long icalcomp);
ClutterModifierType shell_get_event_state (ClutterEvent *event);