On Tue, Jan 25, 2011 at 11:56 PM, Peter Geoghegan
<peter.geoghega...@gmail.com> wrote:
> I had another look at ctlSQLBox::RegexFindText() this evening. I'm
> just going to use the equivalent wx functionality. So, our drop in
> replacement for wx2stc() is:
>
> wxWX2MBbuf ctlSQLBox::StrStc(const wxString& str)
> {
>
> #if wxUSE_UNICODE
>        return str.mb_str(wxConvUTF8);
> #else
>        return str.mbc_str();
> #endif
>
> }
>
> This appears to work fine. Objections?

We don't support non-unicode builds any more, so you might as well
just inline the mb_str call where it's needed, and lose the rest.

Otherwise, no objections :-p

-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers

Reply via email to