Re: crash in FC2

Поиск
Список
Период
Сортировка
От Ivan Nejgebauer
Тема Re: crash in FC2
Дата
Msg-id 41495264.6000703@uns.ns.ac.yu
обсуждение исходный текст
Ответ на crash in FC2  ("Diego A. Gil" <diego@adminsa.com>)
Ответы Re: crash in FC2  ("Diego A. Gil" <diego@adminsa.com>)
Re: crash in FC2  (Andreas Pflug <pgadmin@pse-consulting.de>)
Список pgadmin-support
Diego A. Gil wrote:
> Hi,
>
> I am having some strange behavior in Fedora Core 2. I compiled a cvs
> version, checked out today 16 september. When I try to add a new table,
> or database, etc, pgadmin3 crash without any notice or warning, without
> logging anything.
>
> A new bug ?.

It's a side effect of the fix for the FindFocus bug. The crash you
describe happened to me, too. Try the attached patch (not sure if that's
the right fix, but it works for me.)

i.

--- src/ui/frmMain.cpp.old    Wed Sep 15 09:51:54 2004
+++ src/ui/frmMain.cpp    Wed Sep 15 13:44:27 2004
@@ -509,6 +509,8 @@
     if (data->IsCollection())
     {
         wxWindow *win=wxWindow::FindFocus();
+        if (!win)
+        return data;
         if (win == listViews)
         {
             if (listViews->GetSelection())

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

Предыдущее
От: "Diego A. Gil"
Дата:
Сообщение: crash in FC2
Следующее
От: Ivan Nejgebauer
Дата:
Сообщение: Patch: view data for tables/views on double click