Hi everyone
I have just created my gtk2hs darks repo and confirmed that the fix
for the segfault when using bufferInsertText signal has been fixed.
I would just like to comment on how easy it was to get everything building.
Thanks to the gtk2hs devs and contributors for making it so easy and keep
Hi Rouan,
On 25.01.2012, at 08:38, Rouan van Dalen wrote:
> >> I have the following code to connect a handler to the
> >> bufferInsertText signal:
> >>
> >>buf <- textViewGetBuffer txtView
> >>buf `on` bufferInsertText $ \_ _ -> putStrLn "hi!"
> >>
> >> When I run app and press a key in t
>> I have the following code to connect a handler to the
>> bufferInsertText signal:
>>
>> buf <- textViewGetBuffer txtView
>> buf `on` bufferInsertText $ \_ _ -> putStrLn "hi!"
>>
>> When I run app and press a key in the textView I get a segfault.
> Attached is a patch that fixes this prob
On 25.01.2012, at 06:35, wagne...@seas.upenn.edu wrote:
> Quoting Rouan van Dalen :
>
>> I have the following code to connect a handler to the
>> bufferInsertText signal:
>>
>>buf <- textViewGetBuffer txtView
>>buf `on` bufferInsertText $ \_ _ -> putStrLn "hi!"
>>
>> When I run app and
Quoting Rouan van Dalen :
I have the following code to connect a handler to the
bufferInsertText signal:
buf <- textViewGetBuffer txtView
buf `on` bufferInsertText $ \_ _ -> putStrLn "hi!"
When I run app and press a key in the textView I get a segfault.
Attached is a patch that fixes
Hi everyone.
I have the following code to connect a handler to the bufferInsertText signal:
buf <- textViewGetBuffer txtView
buf `on` bufferInsertText $ \_ _ -> putStrLn "hi!"
When I run app and press a key in the textView I get a segfault.
The code was inspired from to see if the bug was