~timo-jyrinki/ubuntu/utopic/rhythmbox/enable_grilo_rhythmbox

« back to all changes in this revision

Viewing changes to plugins/fmradio/rb-fm-radio-source.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-03-12 12:07:21 UTC
  • mfrom: (1.2.28)
  • Revision ID: package-import@ubuntu.com-20120312120721-ubdep6yl0sgfbr7i
Tags: 2.96-1
* New upstream release.
* Update Build-Depends:
  - Bump libgtk-3-dev to (>= 3.2.0).
  - Drop gir1.2-gtk-3.0, pulled via libgtk-3-dev.
  - Bump libglib2.0-dev (>= 2.28.0).
* Re-add magnatune plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
376
376
}
377
377
 
378
378
static void
 
379
new_station_response_cb (GtkDialog *dialog, int response, gpointer meh)
 
380
{
 
381
        gtk_widget_destroy (GTK_WIDGET (dialog));
 
382
}
 
383
 
 
384
static void
379
385
rb_fm_radio_source_cmd_new_station (GtkAction *action, RBFMRadioSource *self)
380
386
{
381
387
        GtkWidget *dialog;
385
391
        g_signal_connect_object (dialog, "location-added",
386
392
                                 G_CALLBACK (new_station_location_added),
387
393
                                 self, 0);
388
 
        gtk_dialog_run (GTK_DIALOG (dialog));
389
 
        gtk_widget_destroy (GTK_WIDGET (dialog));
 
394
        g_signal_connect (dialog, "response", G_CALLBACK (new_station_response_cb), NULL);
 
395
        gtk_widget_show_all (dialog);
390
396
}
391
397
 
392
398
static void