~ubuntu-branches/ubuntu/quantal/rhythmbox/quantal-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Rodney Dawes
  • Date: 2012-03-09 07:24:47 UTC
  • mfrom: (1.1.64)
  • Revision ID: package-import@ubuntu.com-20120309072447-ltf9ea8d9vj5zmiy
Tags: 2.95.5-0ubuntu1
* New upstream release. (LP: #949424)
  - Add support for allowing plug-ins to specify that they should be
    enabled by default. (LP: #934235)
  - Magnatune plug-in is re-enabled upstream.
  - Removal of gtk_dialog_run in most all cases.
  - Porting of more plug-ins to python-gi. 
* debian/control, debian/*.install:
  - Remove the useless coherence plug-in install file.
  - Move some core plug-ins into main rhythmbox package.
    + audiocd, generic-player, iradio, mmkeys, power-manager, rb
  - Split out the NPAPI plug-in to a separate package.
  - Split out the zeitgeist plug-in to a separate package.
  - Split out the magnatune store plug-in to a separate package.
  - Split out the visualizer plug-in to a separate package.
    + Disable building the visualizer plug-in package, as it needs
      libmx which is in universe and not main.
* debian/patches/*:
  - Refreshed patches against new source that had problems applying.
  - Remvoe the mpris name patch which is included upstream.

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