BUG #1023: Just Testing...

From: "PostgreSQL Bugs List" <pgsql-bugs(at)postgresql(dot)org>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #1023: Just Testing...
Date: 2003-12-22 21:43:11
Message-ID: 20031222214311.B8C11CF792A@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: 1023
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 PostgreSQL Bugs List 2003-12-22 21:49:00 BUG #1024: Just Testing...
Previous Message Michael Meskes 2003-12-22 20:23:53 Re: ecpg c++ scope operator lost