BUG #1023: Just Testing... - Mailing list pgsql-bugs

From PostgreSQL Bugs List
Subject BUG #1023: Just Testing...
Date
Msg-id 20031222214311.B8C11CF792A@www.postgresql.com
Whole thread Raw
List pgsql-bugs
The following bug has been logged online:

Bug reference:      1023
Logged by:          Dave Page

Email address:      dpage@postgresql.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

pgsql-bugs by date:

Previous
From: Michael Meskes
Date:
Subject: Re: ecpg c++ scope operator lost
Next
From: "PostgreSQL Bugs List"
Date:
Subject: BUG #1024: Just Testing...