From: | Jean-Michel POURE <jm(dot)poure(at)freesurf(dot)fr> |
---|---|
To: | Andreas Pflug <Andreas(dot)Pflug(at)web(dot)de>, pgadmin-hackers(at)postgresql(dot)org |
Subject: | Re: pgAdmin3 and gtk2.0/Unicode: done |
Date: | 2003-06-09 06:02:17 |
Message-ID: | 200306090802.17334.jm.poure@freesurf.fr |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgadmin-hackers |
Le Vendredi 06 Juin 2003 00:13, Andreas Pflug a écrit :
> RCS file: /pack/cvsroots/wxwindows/wxWindows/src/common/string.cpp,v
> retrieving revision 1.172
> diff -r1.172 string.cpp
> 269a270
>
> > m_pchData[nLen] = 0;
Hi Andreas,
Could you submit a patch in diff -u format? I don't have enough context to
apply it. What CVS version are you using?
Cheers,
Jean-Michel
****************************************************************************************
int wxString::Find(wxChar ch, bool bFromEnd) const
{
const wxChar *psz = bFromEnd ? wxStrrchr(m_pchData, ch) :
wxStrchr(m_pchData, ch);
return (psz == NULL) ? wxNOT_FOUND : psz - (const wxChar*) m_pchData;
}
// find a sub-string (like strstr)
int wxString::Find(const wxChar *pszSub) const
{
const wxChar *psz = wxStrstr(m_pchData, pszSub);
return (psz == NULL) ? wxNOT_FOUND : psz - (const wxChar*) m_pchData;
}
From | Date | Subject | |
---|---|---|---|
Next Message | frank_lupo | 2003-06-09 06:34:26 | RE: Error Emails |
Previous Message | Jean-Michel POURE | 2003-06-09 05:59:17 | Re: Linking error (same old story) |