Re: [pgadmin-hackers] pgagent linker problem

2006-12-13 Thread Zdenek Kotala
Dave Page napsal(a): Zdenek Kotala wrote: I downloaded everything from web, unpack and build from scratch. I don't have rc1 on my machine. I will recheck it on Wednesday together with Dhanaraj problems. There is wx configure: ./configure --prefix=/opt/wxWidgegets-2.8.0 --with-gtk --enable

Re: [pgadmin-hackers] pgadmin3-1.6.1 - core dumped - Work around

2006-12-13 Thread Dhanaraj M
Well, again the trace appears to show that frmQuery::OnChangeConnection is in the stack - have you even touched the select connection combo box? One thing you might try is changing your GTK theme. We have had odd reports on some Linuxes that using certain themes will result in GTK errors on

Re: [pgadmin-hackers] pgadmin3-1.6.1 - core dumped - Work around

2006-12-13 Thread Dhanaraj M
Sorry for the wrong work around. But it crahes in this step... if (s->GetConnected() && s->GetConnection()->GetHost() == conn->GetHost() && s->GetConnection()->GetPort() == conn->GetPort())^M I think 'conn' is destroyed already... or some other problem. Any idea?? tha

Re: [pgadmin-hackers] pgadmin3-1.6.1 - core dumped - Work around

2006-12-13 Thread Dave Page
Dhanaraj M wrote: Sorry for the wrong work around. But it crahes in this step... if (s->GetConnected() && s->GetConnection()->GetHost() == conn->GetHost() && s->GetConnection()->GetPort() == conn->GetPort())^M I think 'conn' is destroyed already... or some other problem

[pgadmin-hackers] Developer.pgadmin.org

2006-12-13 Thread Dave Page
Hi, I'm aiming to move developer.pgadmin.org to a new data center some time tomorrow. Please avoid using it until I 've emailed to say I've finished. Thanks, Dave ---(end of broadcast)--- TIP 7: You can help support the PostgreSQL project by donat

Re: [pgadmin-hackers] pgadmin3-1.6.1 - core dumped - Fixed

2006-12-13 Thread Dhanaraj M
Hi Dave I dont know whether the problem is with pgAdmin or not. But I have a fix for this. File name:- src/frm/frmQuery.cpp void frmQuery::OnChangeConnection(wxCommandEvent &ev) { unsigned int sel=cbConnection->GetCurrentSelection(); + if(!IsVisible()) + return; if (sel == cbC