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

Поиск
Список
Период
Сортировка
От Peter Geoghegan
Тема Re: pgAdmin III commit: Somehow forgot to commit this.
Дата
Msg-id AANLkTi=fKmcNUXeCot1eG5McO_++d14Ppt6+J38LRCos@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
Oh, okay.

It doesn't actually build against 2.9 yet, due to a lack of this,
because someone subsequently broke 2.9 compatibility:

 // Handle, and pass up child focus events
 void ctlAuiNotebook::OnChildFocus(wxChildFocusEvent &event)
 {
+
+#if wxCHECK_VERSION(2, 9, 0)
+    wxAuiNotebook::OnChildFocusNotebook(event);
+    GetParent()->GetEventHandler()->AddPendingEvent(event);
+#else
     wxAuiNotebook::OnChildFocus(event);
     GetParent()->AddPendingEvent(event);
+#endif
+
 }

The next patch of mine you commit should be last night's, which is a
superset of this patch. There will be merge conflicts. Would you like
me to produce a new patch without merge conflicts for your
convenience?


--
Regards,
Peter Geoghegan

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

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