~ubuntu-branches/debian/sid/audacious-plugins/sid

« back to all changes in this revision

Viewing changes to src/skins/ui_skinned_equalizer_slider.c

  • Committer: Bazaar Package Importer
  • Author(s): Bilal Akhtar
  • Date: 2011-04-10 18:56:21 UTC
  • mfrom: (1.1.14 upstream) (2.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20110410185621-7eg1k5a7v3f4aqrn
Tags: 2.4.4-1
* New upstream release.
  - Fix FTBFS with GCC 4.5 (Closes: #621989)
* Upload to unstable.
* debian/control:
  - Update versioned dependencies according to upstream changes.
  - Bump Standards-Version to 3.9.2 (no changes needed).
  - Since the package will be building against the new FFMpeg libs,
    fix the problem of depending on old uninstallable libav*
    packages (Closes: #617603)

Show diffs side-by-side

added added

removed removed

Lines of Context:
432
432
 
433
433
void ui_skinned_equalizer_slider_set_mainwin_text(UiSkinnedEqualizerSlider * es) {
434
434
    gint band = 0;
435
 
    const gchar *bandname[11] = { N_("PREAMP"), N_("60HZ"), N_("170HZ"),
436
 
        N_("310HZ"), N_("600HZ"), N_("1KHZ"),
437
 
        N_("3KHZ"), N_("6KHZ"), N_("12KHZ"),
438
 
        N_("14KHZ"), N_("16KHZ")
439
 
    };
 
435
    const gchar * const bandname[11] = {N_("Preamp"), N_("31 Hz"), N_("63 Hz"),
 
436
     N_("125 Hz"), N_("250 Hz"), N_("500 Hz"), N_("1 kHz"), N_("2 kHz"),
 
437
     N_("4 kHz"), N_("8 kHz"), N_("16 kHz")};
440
438
    gchar *tmp;
441
439
 
442
440
    if (es->x > 21)