Re: GDK_KP_Decimal (on Windows)

2015-05-08 Thread John Emmas
On 04/05/2015 16:49, LRN wrote: - *ksymp - GDK_KP_DECIMAL; break; + *ksymp = GDK_KEY_KP_Decimal; break; I just updated from gtk-2-24 git which pulled in the above change (commit #1f74f12d). Whilst the change might be technically more correct (and it matches the style for GTK+

Re: GDK_KP_Decimal (on Windows)

2015-05-08 Thread Emmanuele Bassi
Hi; On 8 May 2015 at 07:35, John Emmas john...@tiscali.co.uk wrote: On 04/05/2015 16:49, LRN wrote: - *ksymp - GDK_KP_DECIMAL; break; + *ksymp = GDK_KEY_KP_Decimal; break; I just updated from gtk-2-24 git which pulled in the above change (commit #1f74f12d). Whilst the change

TextTags not removed from tag table

2015-05-08 Thread Gilzad Hamuni
Hi list, in order to keep my memory sane, I try to delete all text tags whenever I clear the text buffer of a text view (buffer.remove_all_tags(startIter, endIter)). However, I get the warning that the tags I deleted are still in the tag table (A tag named 'tag_1' is already in the tag table.).

Re: Re: TextTags not removed from tag table

2015-05-08 Thread Gilzad Hamuni
Gesendet: Freitag, 08. Mai 2015 um 17:18 Uhr Von: Gian Mario Tagliaretti Betreff: Re: TextTags not removed from tag table 2015-05-08 12:00 GMT+02:00 Gilzad Hamuni: Dear Gilzad, However, I get the warning that the tags I deleted are still in the tag table (A tag named 'tag_1' is

gnotification under win32

2015-05-08 Thread Andrea Zagli
gnotification works under win? i get a segfault on g_application_send_notification (GLib-GObject-CRITICAL **: g_object_new: assertion 'G_TYPE_IS_OBJECT (object_type)' failed) or i did't uderstand how use it? i tried with this code (i also tried without gtkapplication, but only with

Re: TextTags not removed from tag table

2015-05-08 Thread Gilzad Hamuni
I notice among using attachments I violated a bunch of the mailer's rules, sorry. Hopefully not this time. So these few lines shall explain the trouble I have: tag = buffer.create_tag(tag_0);//create a texttag inside of the text buffer buffer.apply_tag(tag, lastIter, currentIter);//apply the tag

Aw: TextTags not removed from tag table

2015-05-08 Thread Gilzad Hamuni
I notice attachments will be rejected, so these few lines shall explain the trouble I have: tag = buffer.create_tag(tag_0);//create a texttag inside of the text buffer buffer.apply_tag(tag, lastIter, currentIter);//apply the tag to some given text. buffer.remove_all_tags(startIter,