~ubuntu-branches/ubuntu/vivid/gnomeradio/vivid-201504031246

« back to all changes in this revision

Viewing changes to .pc/gnomeradio-media_types.patch/src/gui.c

  • Committer: Package Import Robot
  • Author(s): POJAR GEORGE
  • Date: 2013-06-15 15:14:16 UTC
  • Revision ID: package-import@ubuntu.com-20130615151416-nivhws9zlhdocegi
Tags: 1.8-2ubuntu14
* debian/patches/gnomeradio-thread_safe.patch: Replace strtok() with
  strtok_r(), readdir() with readdir_r() and localtime() with localtime_r()
  for thread safe.
* Improved mixer error message in debian/patches/gnomeradio-alsamixer.patch.
* Moved changes applied to src/record.c from gnomeradio-media_types.patch to
  gnomeradio-record_information.patch.
  - Improved error message when getting information for file.
* debian/{control, rules}: Enable PIE hardening.
* Refresh patches:
  - debian/patches/gnomeradio-gstreamer-1.0.patch
  - debian/patches/gnomeradio-keyboard_shortcuts.patch
  - debian/patches/gnomeradio-non_modal.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
291
291
        res = mixer_set_device(settings.mixer);
292
292
        if (res == -1) {
293
293
                char *caption = g_strdup_printf(_("Could not open mixer device and channel \"%s\"!"), settings.mixer);
294
 
                char *detail = g_strdup_printf(_("Use alsamixer to get information about device and channel names\n"
295
 
                                                 "for the sound cards that is ready to use.\n"
296
 
                                                 "The format to set mixer device and channel:\n"
297
 
                                                 "\"hw:card name/channel name\" (e.g. \"hw:0/Line\" or \"hw:ICH5/Line\")"));
 
294
                char *detail = g_strdup_printf(_("You can use alsamixer to get information about sound card[s].\n"
 
295
                                                 "The format to set mixer to use: \"device/channel\" (e.g. hw:0/Line)."));
298
296
                show_error_message(caption, detail);
299
297
                g_free(caption);
300
298
                g_free(detail);