~ubuntu-branches/ubuntu/precise/evolution/precise

« back to all changes in this revision

Viewing changes to calendar/gui/dialogs/send-comp.c

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-06-24 00:27:53 UTC
  • mfrom: (1.1.80 upstream)
  • Revision ID: james.westby@ubuntu.com-20110624002753-2vh1vjavlya7r103
Tags: 3.1.2-0ubuntu1
* New upstream release 3.1.2.
* debian/control: adjust Build-Depends to match new upstream requirements for
  the new release.
* debian/control: update evolution and evolution-dev Depends to require the
  right versions of e-d-s (>= 3.1, << 3.2), and drop libunique-3.0-dev.
* debian/control,
  debian/evolution.install: remove groupwise-features from the plugin list,
  it's now split out into a separate module.
* debian/patches/03_lpi.patch: refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
                ECalComponentAlarm *alarm;
87
87
                ECalComponentAlarmAction action = E_CAL_COMPONENT_ALARM_UNKNOWN;
88
88
 
89
 
                alarm = e_cal_component_get_alarm (comp, (const gchar *)l->data);
 
89
                alarm = e_cal_component_get_alarm (comp, (const gchar *) l->data);
90
90
                if (alarm) {
91
91
                        e_cal_component_alarm_get_action (alarm, &action);
92
92
                        e_cal_component_alarm_free (alarm);
186
186
        }
187
187
 
188
188
        dialog = e_alert_dialog_new_for_args (parent, id, NULL);
189
 
        content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
 
189
        content_area = e_alert_dialog_get_content_area (E_ALERT_DIALOG (dialog));
190
190
 
191
191
        if (strip_alarms)
192
192
                sa_checkbox = add_checkbox (GTK_BOX (content_area), _("Send my alarms with this event"));