~ubuntu-branches/ubuntu/oneiric/rhythmbox/oneiric

« back to all changes in this revision

Viewing changes to shell/rb-removable-media-manager.c

  • Committer: Bazaar Package Importer
  • Author(s): Rico Tzschichholz
  • Date: 2011-07-29 16:41:38 UTC
  • mto: This revision was merged to the branch mainline in revision 191.
  • Revision ID: james.westby@ubuntu.com-20110729164138-wwicy8nqalm18ck7
Tags: upstream-2.90.1~20110802
ImportĀ upstreamĀ versionĀ 2.90.1~20110802

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
                                              GValue *value,
73
73
                                              GParamSpec *pspec);
74
74
 
75
 
static void rb_removable_media_manager_cmd_scan_media (GtkAction *action,
76
 
                                                       RBRemovableMediaManager *manager);
 
75
static void rb_removable_media_manager_cmd_check_devices (GtkAction *action,
 
76
                                                          RBRemovableMediaManager *manager);
77
77
static void rb_removable_media_manager_cmd_eject_medium (GtkAction *action,
78
78
                                               RBRemovableMediaManager *mgr);
79
79
static gboolean rb_removable_media_manager_source_can_eject (RBRemovableMediaManager *mgr);
150
150
        { "RemovableSourceEject", GNOME_MEDIA_EJECT, N_("_Eject"), NULL,
151
151
          N_("Eject this medium"),
152
152
          G_CALLBACK (rb_removable_media_manager_cmd_eject_medium) },
153
 
        { "MusicScanMedia", NULL, N_("_Scan Removable Media"), NULL,
154
 
          N_("Scan for new Removable Media"),
155
 
          G_CALLBACK (rb_removable_media_manager_cmd_scan_media) },
 
153
        { "MusicCheckDevices", NULL, N_("_Check for New Devices"), NULL,
 
154
          N_("Check for new media storage devices that have not been automatically detected"),
 
155
          G_CALLBACK (rb_removable_media_manager_cmd_check_devices) },
156
156
};
157
157
static guint rb_removable_media_manager_n_actions = G_N_ELEMENTS (rb_removable_media_manager_actions);
158
158
 
842
842
}
843
843
 
844
844
static void
845
 
rb_removable_media_manager_cmd_scan_media (GtkAction *action, RBRemovableMediaManager *manager)
 
845
rb_removable_media_manager_cmd_check_devices (GtkAction *action, RBRemovableMediaManager *manager)
846
846
{
847
847
        rb_removable_media_manager_scan (manager);
848
848
}