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
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
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
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
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
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