Disabled displaying country flags for languages. Prevents #7517.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41630 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2011-05-21 14:26:24 +00:00
parent ee3d8836e7
commit 7873172c47
@@ -63,6 +63,9 @@ public:
BStringItem(label),
fLanguage(language)
{
// Don't use *country* flags for *languages*. Can be re-enabled and adjusted
// accordingly once we have language icons.
#if 0
fIcon = new(std::nothrow) BBitmap(BRect(0, 0, 15, 15), B_RGBA32);
if (fIcon != NULL
&& (!fIcon->IsValid()
@@ -71,6 +74,9 @@ public:
delete fIcon;
fIcon = NULL;
}
#else
fIcon = NULL;
#endif
}
~LanguageItem()