~ubuntu-branches/ubuntu/maverick/mythtv/maverick

« back to all changes in this revision

Viewing changes to libs/libmythtv/channelscan/frequencytablesetting.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello, Dave Walker, Mario Limonciello
  • Date: 2010-02-27 14:33:45 UTC
  • mfrom: (1.1.48 upstream)
  • Revision ID: james.westby@ubuntu.com-20100227143345-qye52374g4b4caf9
Tags: 0.23.0~trunk23623-0ubuntu1
[ Dave Walker ]
* debian/control:  Added quilt as a build-depends, primarily
  for karmic builds.

[ Mario Limonciello ]
* New checkout (r23623).
  - Fixes audio issues w/ ac3 audio.
* debian/patches/36_setgroups_too:
  - Set the right args for setgroups. (LP: #524822)
* debian/rules:
  - Explicitly set all shell scripts executable.  Fixes problems on < lucid
    builds.
* debian/control:
  - Correct the replaces statements. (LP: #527288)

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        country = "au";
63
63
    else if (qtcountry == QLocale::Germany)
64
64
        country = "de";
 
65
    else if (qtcountry == QLocale::CzechRepublic)
 
66
        country = "cz";
65
67
    else if (qtcountry == QLocale::Finland)
66
68
        country = "fi";
67
69
    else if (qtcountry == QLocale::Sweden)
74
76
        country = "nz";
75
77
    else if (qtcountry == QLocale::France)
76
78
        country = "fr";
 
79
    else if (qtcountry == QLocale::Greece)
 
80
        country = "gr";
77
81
 
78
82
    setLabel(tr("Country"));
79
83
    addSelection(QObject::tr("Australia"),      "au", country == "au");
81
85
    addSelection(QObject::tr("Sweden"),         "se", country == "se");
82
86
    addSelection(QObject::tr("United Kingdom"), "uk", country == "uk");
83
87
    addSelection(QObject::tr("Germany"),        "de", country == "de");
 
88
    addSelection(QObject::tr("Czech Republic"), "cz", country == "cz");
84
89
    addSelection(QObject::tr("Spain"),          "es", country == "es");
85
90
    addSelection(QObject::tr("New Zealand"),    "nz", country == "nz");
86
91
    addSelection(QObject::tr("France"),         "fr", country == "fr");
 
92
    addSelection(QObject::tr("Greece"),         "gr", country == "gr");
87
93
}
88
94
 
89
95