Re: Generic character types of gregex are unrecognised

2009-01-08 Thread Liam R E Quin
On Thu, 2009-01-08 at 17:43 +0900, tks wrote: > > On Wed, 2009-01-07 at 02:00 +0900, tks wrote: > > [...] > >> reg = g_regex_new ("\d\D\s\S\w\W", > >> 0, > >> 0, > >> &error); > > > > > > Watch out that \ is special in C strings, so y

Re: gtk-app-devel-list Digest, Vol 57, Issue 10

2009-01-08 Thread Steve Splonskowski
Did you try this out? Would you like me to take a whack at it? splons On Jan 8, 2009, at 4:00 AM, gtk-app-devel-list-requ...@gnome.org wrote: Message: 4 Date: Wed, 7 Jan 2009 17:21:08 - From: "Pavel A. da Mek" Subject: Re: Toolbar text makes toolbar very, very wide To: Message-ID: <00

Parsing the gtk application

2009-01-08 Thread Bernd Demian
Hi, I want generate a xml-glade file from an exiting application. Is their a library to help me to parse the application. Many thanx Bernd ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-d

Re: Generic character types of gregex are unrecognised

2009-01-08 Thread tks
> On Wed, 2009-01-07 at 02:00 +0900, tks wrote: > [...] >> reg = g_regex_new ("\d\D\s\S\w\W", >> 0, >> 0, >> &error); > > > Watch out that \ is special in C strings, so you need > \\d\\D etc. > > Liam Thanks, I'm so stupid! :P __