Re: pgAdmin III commit: Somehow forgot to commit this.

Поиск
Список
Период
Сортировка
От Peter Geoghegan
Тема Re: pgAdmin III commit: Somehow forgot to commit this.
Дата
Msg-id AANLkTikh3twOz827D_VyjO=ic5V6X8HJX6cp7WDry9dd@mail.gmail.com
обсуждение исходный текст
Ответ на Re: pgAdmin III commit: Somehow forgot to commit this.  (Dave Page <dpage@pgadmin.org>)
Ответы Re: pgAdmin III commit: Somehow forgot to commit this.  (Dave Page <dpage@pgadmin.org>)
Список pgadmin-hackers
uh, what about the patch I sent you last night,
patch_with_ogl.patch.gz? It integrated OGL into our tree.

By the way, this shouldn't have been changed, and has been changed
back in that patch:

    //Create SQL editor notebook
    sqlNotebook = new ctlAuiNotebook(this, CTL_NTBKCENTER,
wxDefaultPosition, wxDefaultSize, wxAUI_NB_TOP | wxAUI_NB_TAB_SPLIT |
wxAUI_NB_TAB_MOVE | wxAUI_NB_SCROLL_BUTTONS |
wxAUI_NB_WINDOWLIST_BUTTON);
@@ -994,7 +994,7 @@ void frmQuery::OnChangeConnection(wxCommandEvent &ev)
            pgConn *newconn = dlg.CreateConn(applicationname, createdNewConn);
            if (newconn && createdNewConn)
            {
-               cbConnection->Insert(newconn->GetName(),
CreateBitmap(GetServerColour(newconn)), sel, (void *)newconn);
+               cbConnection->Insert(newconn->GetName(),
CreateBitmap(GetServerColour(newconn)), sel, (wxClientData *)newconn);

--
Regards,
Peter Geoghegan

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: pgAdmin III commit: Somehow forgot to commit this.
Следующее
От: Dave Page
Дата:
Сообщение: pgAdmin III commit: Revert change to cast, per Peter.