Re: [PyKDE] SIP parse error

2005-06-22 Thread Phil Thompson
On Tuesday 21 June 2005 4:25 pm, Denis S. Otkidach wrote: > On Tue, 21 Jun 2005 15:52:15 +0100 (BST) > > "Phil Thompson" <[EMAIL PROTECTED]> wrote: > > > I see some strange syntax errors with this snapshot for project > > > successfully built with sip-snapshot-20050605. In all cases the error > >

Re: [PyKDE] SIP parse error

2005-06-22 Thread Ulrich Berning
Phil Thompson schrieb: On Sun, 19 Jun 2005 14:37:48 +0100 Phil Thompson <[EMAIL PROTECTED]> wrote: On Friday 17 June 2005 9:13 pm, James Emerton wrote: There is a small issue with the parsing code in SIP. I get a parse error whenever a %MethodCode section contains a %, such as a

Re: [PyKDE] SIP parse error

2005-06-21 Thread Denis S. Otkidach
On Tue, 21 Jun 2005 15:52:15 +0100 (BST) "Phil Thompson" <[EMAIL PROTECTED]> wrote: > > I see some strange syntax errors with this snapshot for project > > successfully built with sip-snapshot-20050605. In all cases the error > > is in %Included file and in one case the error is at line 271 of fi

Re: [PyKDE] SIP parse error

2005-06-21 Thread Phil Thompson
> On Sun, 19 Jun 2005 14:37:48 +0100 > Phil Thompson <[EMAIL PROTECTED]> wrote: > >> On Friday 17 June 2005 9:13 pm, James Emerton wrote: >> > There is a small issue with the parsing code in SIP. I get a parse >> > error whenever a %MethodCode section contains a %, such as a printf() >> > format s

Re: [PyKDE] SIP parse error

2005-06-21 Thread Denis S. Otkidach
On Sun, 19 Jun 2005 14:37:48 +0100 Phil Thompson <[EMAIL PROTECTED]> wrote: > On Friday 17 June 2005 9:13 pm, James Emerton wrote: > > There is a small issue with the parsing code in SIP. I get a parse > > error whenever a %MethodCode section contains a %, such as a printf() > > format string. >

Re: [PyKDE] SIP parse error

2005-06-19 Thread Phil Thompson
On Friday 17 June 2005 9:13 pm, James Emerton wrote: > There is a small issue with the parsing code in SIP. I get a parse > error whenever a %MethodCode section contains a %, such as a printf() > format string. > > My workaround right now is to use something like this... > const char fmt[] = { 37,

Re: [PyKDE] SIP parse error

2005-06-18 Thread Denis S. Otkidach
On Fri, 17 Jun 2005 13:13:28 -0700 James Emerton <[EMAIL PROTECTED]> wrote: > There is a small issue with the parsing code in SIP. I get a parse > error whenever a %MethodCode section contains a %, such as a printf() > format string. > > My workaround right now is to use something like this... >

[PyKDE] SIP parse error

2005-06-17 Thread James Emerton
There is a small issue with the parsing code in SIP. I get a parse error whenever a %MethodCode section contains a %, such as a printf() format string. My workaround right now is to use something like this... const char fmt[] = { 37, '0', '4', 'd', 37, '0', '2', 'd', 37, '0', '2', 'd', 0 }; Jame