[Lazarus] Need testers (gtk2)

2010-10-24 Thread zeljko
Hi, I've commited an important patch today (r 27829) , about gtk2 main loop iterations. Now it uses g_main_context instead of g_main which is deprecated from gtk2-2.2. This patch improves main loop, but also now PostMessage() works fine for messages from another threads. *** Gtk2 Laz/LCL must

Re: [Lazarus] Need testers (gtk2)

2010-10-24 Thread Juha Manninen
On Sunday 24 October 2010 15:24:04 zeljko wrote: Hi, I've commited an important patch today (r 27829) , about gtk2 main loop iterations. Now it uses g_main_context instead of g_main which is deprecated from gtk2-2.2. This patch improves main loop, but also now PostMessage() works fine for

Re: [Lazarus] Need testers (gtk2)

2010-10-24 Thread Mark Morgan Lloyd
Juha Manninen wrote: Question: how can I give --sync parameter for the program when I run it under gdb? I tried: $ gdb 'framedem --sync' which says: framedem --sync: No such file or directory. and: $ gdb framedem --sync which says: gdb: unrecognized option '--sync' Use `gdb --help'

Re: [Lazarus] Need testers (gtk2)

2010-10-24 Thread Felipe Monteiro de Carvalho
On Sun, Oct 24, 2010 at 3:32 PM, Juha Manninen juha.mannine...@gmail.com wrote: Question: how can I give  --sync parameter for the program when I run it under gdb? I tried:  $ gdb 'framedem --sync' gdb framedem And then inside gdb: run --sync -- Felipe Monteiro de Carvalho --

Re: [Lazarus] Need testers (gtk2)

2010-10-24 Thread zeljko
On Sunday 24 October 2010 15:32, Juha Manninen wrote: On Sunday 24 October 2010 15:24:04 zeljko wrote: Hi, I've commited an important patch today (r 27829) , about gtk2 main loop iterations. Now it uses g_main_context instead of g_main which is deprecated from gtk2-2.2. This patch

Re: [Lazarus] Need testers (gtk2)

2010-10-24 Thread waldo kitty
On 10/24/2010 11:53, zeljko wrote: On Sunday 24 October 2010 15:32, Juha Manninen wrote: I can give the parameter in Lazarus Run Parameters... but then the whole Lazarus freezes. It doesn't take mouse clicks and must be killed. Isn't standard X11 param with one - eg. ./myprogram -sync ?

Re: [Lazarus] Need testers (gtk2)

2010-10-24 Thread zeljko
On Sunday 24 October 2010 17:56, waldo kitty wrote: On 10/24/2010 11:53, zeljko wrote: On Sunday 24 October 2010 15:32, Juha Manninen wrote: I can give the parameter in Lazarus Run Parameters... but then the whole Lazarus freezes. It doesn't take mouse clicks and must be killed. Isn't

Re: [Lazarus] Need testers (gtk2)

2010-10-24 Thread Juha Manninen
On Sunday 24 October 2010 18:56:18 waldo kitty wrote: Isn't standard X11 param with one - eg. ./myprogram -sync ? full word params has two dashes... single character params have one dash... foo -V foo --version the above might return the same result in program foo... Thanks Marc and