BUG #1024: Just Testing...

From: "PostgreSQL Bugs List" <pgsql-bugs(at)postgresql(dot)org>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #1024: Just Testing...
Date: 2003-12-22 21:49:00
Message-ID: 20031222214900.7BF63CF77B6@www.postgresql.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 1024
Logged by: Dave Page

Email address: dpage(at)postgresql(dot)org

PostgreSQL version: 7.5 Dev

Operating system: CYGWIN_NT-5.1 pc30 1.5.5(0.94/3/2) 2003-09-20 16:31 i686 unknown unknown
Cygwin

Description: Just Testing...

Details:

#ifdef __LINUX__
{
wxLogNull noLog;
locale.AddCatalog(wxT("fileutils"));
}
#endif

if (langCount)
{
wxString *langNames=new wxString[langCount+1];
langNames[0] = _("Default");

for (langNo = 0; langNo < langCount ; langNo++)
{
langInfo =
wxLocale::GetLanguageInfo(existingLangs.Item(langNo));
langNames[langNo+1] = wxT("(") + langInfo->CanonicalName +
wxT(") ")
+ existingLangNames.Item(langNo);
}

langNo = wxGetSingleChoiceIndex(_("Please choose user
language:"), _("User language"),
langCount+1, langNames);
if (langNo > 0)
(wxLanguage)wxLocale::GetLanguageInfo(existingLangs.Item(langNo-1))->Langua
langId = ge;

delete[] langNames;
}
}

if (langId != wxLANGUAGE_UNKNOWN)
{
if (locale.Init(langId))
{
#ifdef __LINUX__
{
wxLogNull noLog;
locale.AddCatalog(wxT("fileutils"));
}
#endif

Browse pgsql-bugs by date

  From Date Subject
Next Message Sh A Guru Prasad 2003-12-23 04:50:53 pg_connect() problem
Previous Message PostgreSQL Bugs List 2003-12-22 21:43:11 BUG #1023: Just Testing...