From: | "Dave Page" <dpage(at)vale-housing(dot)co(dot)uk> |
---|---|
To: | "Florian G(dot) Pflug" <fgp(at)phlo(dot)org>, "pgadmin-hackers" <pgadmin-hackers(at)postgresql(dot)org> |
Subject: | Re: Buid fails on OSX 10.3.9 |
Date: | 2006-10-24 08:57:29 |
Message-ID: | E7F85A1B5FF8D44C8A1AF6885BC9A0E40176D837@ratbert.vale-housing.co.uk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgadmin-hackers |
> -----Original Message-----
> From: pgadmin-hackers-owner(at)postgresql(dot)org
> [mailto:pgadmin-hackers-owner(at)postgresql(dot)org] On Behalf Of
> Florian G. Pflug
> Sent: 24 October 2006 09:46
> To: pgadmin-hackers
> Subject: [pgadmin-hackers] Buid fails on OSX 10.3.9
>
> Hi
>
> The build fails since yesterday on OSX 10.3.9, using wx-2.7.0
> This is the error message:
> dlg/dlgIndex.cpp:42: error: invalid static_cast from type
> `<unknown type>' to
> type `void (wxEvtHandler::*)(wxListEvent&)'
> dlg/dlgIndex.cpp:43: error: invalid static_cast from type
> `<unknown type>' to
> type `void (wxEvtHandler::*)(wxCommandEvent&)'
>
> I didn't have the time yet to look into this - maybe someone
> has here has an
> idea about what gcc is unhappy about...
It seems that GCC can't tell the difference between some of these three
functions:
void OnSelectCol(wxCommandEvent &ev);
void OnSelectCol(wxListEvent &ev);
void OnSelectCol();
I've renamed the first two - will commit in a minute.
Thanks, Dave.
From | Date | Subject | |
---|---|---|---|
Next Message | svn | 2006-10-24 09:15:16 | SVN Commit by dpage: r5520 - in trunk/pgadmin3/src: dlg include |
Previous Message | Florian G. Pflug | 2006-10-24 08:46:17 | Buid fails on OSX 10.3.9 |