* changed BTimeZone to use BLanguage instead of BLocale, as that what represents

the locale of messages (timezone names in this case)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38340 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe
2010-08-24 18:32:59 +00:00
parent 4f5f77e6e4
commit aa8372c486
2 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -13,13 +13,13 @@ namespace icu_44 {
class Locale;
class TimeZone;
}
class BLocale;
class BLanguage;
class BTimeZone {
public:
BTimeZone(const char* zoneID = NULL,
const BLocale* locale = NULL);
const BLanguage* language = NULL);
BTimeZone(const BTimeZone& other);
~BTimeZone();
@@ -36,9 +36,9 @@ public:
status_t InitCheck() const;
status_t SetTo(const char* zoneID,
const BLocale* locale = NULL);
const BLanguage* language = NULL);
status_t SetLocale(const BLocale* locale);
status_t SetLanguage(const BLanguage* language);
static const char* kNameOfGmtZone;