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

« back to all changes in this revision

Viewing changes to calendar/gui/dialogs/alarm-list-dialog.c

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-09-08 09:38:57 UTC
  • mfrom: (1.1.84 upstream)
  • Revision ID: package-import@ubuntu.com-20110908093857-6lfl04ke2ns3kx2o
Tags: 3.1.91-0ubuntu1
* New upstream release. (LP: #843769)
* debian/control: bump e-d-s Build-Depends to 3.1.91. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
 
111
111
/* Callback used for the "add reminder" button */
112
112
static void
113
 
add_clicked_cb (GtkButton *button, gpointer data)
 
113
add_clicked_cb (GtkButton *button,
 
114
                gpointer data)
114
115
{
115
116
        Dialog *dialog = data;
116
117
        ECalComponentAlarm *alarm;
140
141
 
141
142
/* Callback used for the "edit reminder" button */
142
143
static void
143
 
edit_clicked_cb (GtkButton *button, gpointer data)
 
144
edit_clicked_cb (GtkButton *button,
 
145
                 gpointer data)
144
146
{
145
147
        Dialog *dialog = data;
146
148
        GtkTreeSelection *selection;
168
170
 
169
171
/* Callback used for the "delete reminder" button */
170
172
static void
171
 
delete_clicked_cb (GtkButton *button, gpointer data)
 
173
delete_clicked_cb (GtkButton *button,
 
174
                   gpointer data)
172
175
{
173
176
        Dialog *dialog = data;
174
177
        GtkTreeSelection *selection;
203
206
}
204
207
 
205
208
static void
206
 
selection_changed_cb (GtkTreeSelection *selection, gpointer data)
 
209
selection_changed_cb (GtkTreeSelection *selection,
 
210
                      gpointer data)
207
211
{
208
212
        Dialog *dialog = data;
209
213
 
211
215
}
212
216
 
213
217
void
214
 
alarm_list_dialog_set_client (GtkWidget *dlg_box, ECalClient *cal_client)
 
218
alarm_list_dialog_set_client (GtkWidget *dlg_box,
 
219
                              ECalClient *cal_client)
215
220
{
216
221
        Dialog *dialog;
217
222
 
310
315
}
311
316
 
312
317
GtkWidget *
313
 
alarm_list_dialog_peek (ECalClient *cal_client, EAlarmList *list_store)
 
318
alarm_list_dialog_peek (ECalClient *cal_client,
 
319
                        EAlarmList *list_store)
314
320
{
315
321
        Dialog *dialog;
316
322