<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-6666239544818473000.post6602366842564851258..comments</id><updated>2012-01-21T22:32:25.307+01:00</updated><category term='GtkComboBox'/><category term='GtkTreeModel'/><category term='Tips'/><category term='threads'/><category term='GtkLabel'/><category term='GtkDialog'/><category term='Glade'/><category term='GtkTreeView'/><category term='GTK+'/><category term='Maintenance'/><category term='glib'/><category term='tutorial'/><title type='text'>Comments on Bits and pieces: Multi threaded GTK+ applications</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.borovsak.si/feeds/6602366842564851258/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html'/><author><name>Tadej Borovšak</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-V5S0cD-5b_I/AAAAAAAAAAI/AAAAAAAAArU/nAyUYzn6Yx8/s512-c/photo.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-5990109785508277580</id><published>2011-02-25T16:28:33.178+01:00</published><updated>2011-02-25T16:28:33.178+01:00</updated><title type='text'>Do you think you can implement an example in Gtkmm...</title><content type='html'>Do you think you can implement an example in Gtkmm? I can try, but I&amp;#39;m not sure how to go about this.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/5990109785508277580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/5990109785508277580'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1298647713178#c5990109785508277580' title=''/><author><name>jackyalcine</name><uri>https://launchpad.net/~jackyalcine</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/openid16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-494153562'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-6423432086928887653</id><published>2011-01-31T14:36:30.700+01:00</published><updated>2011-01-31T14:36:30.700+01:00</updated><title type='text'>I&amp;#39;m having problems implementing this in a GUI...</title><content type='html'>I&amp;#39;m having problems implementing this in a GUI I&amp;#39;ve made with Glade:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;typedef struct Data data;    &lt;br /&gt;typedef struct {    &lt;br /&gt; GtkWidget *t1view, &lt;br /&gt;    *t2view, *t2button;&lt;br /&gt;} Data;&lt;br /&gt;&lt;br /&gt;GtkTextBuffer *textbuffer1, *textbuffer2;&lt;br /&gt;&lt;br /&gt;// Function prototypes:&lt;br /&gt;void on_mainwindow_destroy (GtkObject *, gpointer);&lt;br /&gt;void on_t1button_clicked (GtkButton *, Data *);&lt;br /&gt;void on_t2button_clicked (GtkButton *, Data *);&lt;br /&gt;&lt;br /&gt;int main (int argc, char *argv[]) {&lt;br /&gt;        GtkBuilder  *builder;&lt;br /&gt;        GtkWidget  *window;&lt;br /&gt; Data   *data;&lt;br /&gt;&lt;br /&gt;        if( ! g_thread_supported() )&lt;br /&gt;            g_thread_init( NULL );&lt;br /&gt;        gdk_threads_init();&lt;br /&gt;   gtk_init (&amp;amp;argc, &amp;amp;argv);&lt;br /&gt;&lt;br /&gt;        &lt;br /&gt;        builder = gtk_builder_new ();&lt;br /&gt; gtk_builder_add_from_file (builder, &lt;br /&gt;            &amp;quot;tviewgui.glade&amp;quot;, NULL);&lt;br /&gt;        window = GTK_WIDGET (gtk_builder_get_object &lt;br /&gt;            (builder, &amp;quot;window&amp;quot;));&lt;br /&gt;  &lt;br /&gt; data = g_slice_new(Data);  &lt;br /&gt; data-&amp;gt;t1view = &lt;br /&gt;            GTK_WIDGET(gtk_builder_get_object(builder, &lt;br /&gt;            &amp;quot;t1view&amp;quot;));&lt;br /&gt; data-&amp;gt;t2view = &lt;br /&gt;            GTK_WIDGET(gtk_builder_get_object(builder, &lt;br /&gt;            &amp;quot;t2view&amp;quot;));&lt;br /&gt;        data-&amp;gt;t2button = &lt;br /&gt;            GTK_WIDGET(gtk_builder_get_object(builder, &lt;br /&gt;            &amp;quot;t2button&amp;quot;));&lt;br /&gt;&lt;br /&gt; textbuffer1 =        gtk_text_view_get_buffer(GTK_TEXT_VIEW(data-&amp;gt;t1view));    &lt;br /&gt; textbuffer2 = gtk_text_view_get_buffer(GTK_TEXT_VIEW(data-&amp;gt;t2view));&lt;br /&gt;&lt;br /&gt; gtk_builder_connect_signals (builder, &lt;br /&gt;            data);            &lt;br /&gt;        g_object_unref (G_OBJECT (builder));&lt;br /&gt;        &lt;br /&gt;        gtk_widget_show (window);&lt;br /&gt;        gtk_main ();&lt;br /&gt;&lt;br /&gt;        return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void on_window_destroy (GtkObject *object, gpointer user_data) {&lt;br /&gt;        gtk_main_quit();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void on_t1button_clicked (GtkButton *t1button, Data *data) {&lt;br /&gt; GtkTextIter ei;&lt;br /&gt; gtk_text_buffer_get_end_iter(textbuffer1, &amp;amp;ei);&lt;br /&gt; gtk_text_buffer_insert(textbuffer1, &amp;amp;ei, &amp;quot;Text &lt;br /&gt;            1...\n&amp;quot;, -1);  &lt;br /&gt; int i; &lt;br /&gt; for (i=0 ; i&amp;lt;5 ; i++) {&lt;br /&gt;  gtk_text_buffer_insert(textbuffer1, &lt;br /&gt;                    &amp;amp;ei, &amp;quot;Text 1...\n&amp;quot;, -1);&lt;br /&gt;  while (g_main_context_iteration(NULL, &lt;br /&gt;                    FALSE)); &lt;br /&gt;  sleep(2);&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;void on_t2button_clicked (GtkButton *t2button, Data *data) {&lt;br /&gt; GtkTextIter ei; //&lt;br /&gt; gtk_text_buffer_get_end_iter(textbuffer2, &lt;br /&gt;            &amp;amp;ei); &lt;br /&gt; gtk_text_buffer_insert(textbuffer2, &amp;amp;ei, &amp;quot;Text &lt;br /&gt;            2...\n&amp;quot;, -1);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If I want a thread to start when I click t1button (on_t1button_clicked), and to keep running while I do other studd (f.ex. clicking t2button) - where and how do I start the thread?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/6423432086928887653'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/6423432086928887653'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1296480990700#c6423432086928887653' title=''/><author><name>Frank</name><uri>http://www.blogger.com/profile/02802426397553199212</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1970800490'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-3814434795794200525</id><published>2011-01-13T15:27:22.058+01:00</published><updated>2011-01-13T15:27:22.058+01:00</updated><title type='text'>Very clear and easy to understand, thanks!</title><content type='html'>Very clear and easy to understand, thanks!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/3814434795794200525'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/3814434795794200525'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1294928842058#c3814434795794200525' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-167557218'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-7490372726355321381</id><published>2010-12-18T10:56:05.429+01:00</published><updated>2010-12-18T10:56:05.429+01:00</updated><title type='text'>Thanks a lot, I was searching for this.
Thanks a l...</title><content type='html'>Thanks a lot, I was searching for this.&lt;br /&gt;Thanks a lot again</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/7490372726355321381'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/7490372726355321381'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1292666165429#c7490372726355321381' title=''/><author><name>Farooq</name><uri>http://www.blogger.com/profile/00737617711185457065</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-981791169'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-9146578508253892198</id><published>2010-12-17T11:14:39.748+01:00</published><updated>2010-12-17T11:14:39.748+01:00</updated><title type='text'>I would join Saiph to say this tutorial is freakin...</title><content type='html'>I would join Saiph to say this tutorial is freaking awesome! Thanks</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/9146578508253892198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/9146578508253892198'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1292580879748#c9146578508253892198' title=''/><author><name>Benoît</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1132921516'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-5277282973193432053</id><published>2010-12-17T01:24:10.368+01:00</published><updated>2010-12-17T01:24:10.368+01:00</updated><title type='text'>Tjank you soO much tadej. =)</title><content type='html'>Tjank you soO much tadej. =)</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/5277282973193432053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/5277282973193432053'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1292545450368#c5277282973193432053' title=''/><author><name>Debmalya Sinha  -  দেবমাল্য সিংহ</name><uri>http://www.blogger.com/profile/01987940056146331798</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='http://4.bp.blogspot.com/_XXI5tOWosDc/TL_89t2UzKI/AAAAAAAAAoo/t_mJ8rF0GAk/S220/Image0417.jpg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-201017547'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-1694724126130122561</id><published>2010-12-17T01:23:29.039+01:00</published><updated>2010-12-17T01:23:29.039+01:00</updated><title type='text'>thank you soO much Tadej.. 
i was banging my head ...</title><content type='html'>thank you soO much Tadej.. &lt;br /&gt;i was banging my head for *just* that.&lt;br /&gt;&lt;br /&gt;thanks a lot.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/1694724126130122561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/1694724126130122561'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1292545409039#c1694724126130122561' title=''/><author><name>Debmalya Sinha  -  দেবমাল্য সিংহ</name><uri>http://www.blogger.com/profile/01987940056146331798</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='http://4.bp.blogspot.com/_XXI5tOWosDc/TL_89t2UzKI/AAAAAAAAAoo/t_mJ8rF0GAk/S220/Image0417.jpg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-201017547'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-491248704871605568</id><published>2010-09-22T16:46:26.259+02:00</published><updated>2010-09-22T16:46:26.259+02:00</updated><title type='text'>Thanks for this article it helps me very much</title><content type='html'>Thanks for this article it helps me very much</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/491248704871605568'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/491248704871605568'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1285166786259#c491248704871605568' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1690822472'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-7931650698418597547</id><published>2010-09-20T21:28:37.427+02:00</published><updated>2010-09-20T21:28:37.427+02:00</updated><title type='text'>Dude, i just love you for that . not tested yet bu...</title><content type='html'>Dude, i just love you for that . not tested yet but ive no doubt it surely works perfectly. &lt;br /&gt;Finally ican move my apps to threads and get rid of that nasty redraw evetns in my time important routines.&lt;br /&gt;&lt;br /&gt;Keep it up.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/7931650698418597547'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/7931650698418597547'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1285010917427#c7931650698418597547' title=''/><author><name>Robert</name><uri>http://linuxdevelopment.de</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1884644031'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-4239949095549615459</id><published>2010-08-04T12:06:46.145+02:00</published><updated>2010-08-04T12:06:46.145+02:00</updated><title type='text'>Very nice explaination, and a nice web site style....</title><content type='html'>Very nice explaination, and a nice web site style... good job!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/4239949095549615459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/4239949095549615459'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1280916406145#c4239949095549615459' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1942024709'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-501638533847635120</id><published>2009-11-18T01:25:29.929+01:00</published><updated>2009-11-18T01:25:29.929+01:00</updated><title type='text'>Dude, thanks, this tutorial is freaking awesome!
I...</title><content type='html'>Dude, thanks, this tutorial is freaking awesome!&lt;br /&gt;I&amp;#39;ve been following you since you started with the glade things, I love your blog! Please keep posting!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/501638533847635120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/501638533847635120'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1258503929929#c501638533847635120' title=''/><author><name>Saiph</name><uri>http://www.blogger.com/profile/11964246294373530295</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://2.bp.blogspot.com/_laFQZJU0vgA/SvsCLjlCakI/AAAAAAAAAU4/p4ICRj1EfxY/S220/Normita.jpg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-781771394'/></entry><entry><id>tag:blogger.com,1999:blog-6666239544818473000.post-6439995520701728525</id><published>2009-10-30T14:18:53.957+01:00</published><updated>2009-10-30T14:18:53.957+01:00</updated><title type='text'>Many thinks</title><content type='html'>Many thinks</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/6439995520701728525'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6666239544818473000/6602366842564851258/comments/default/6439995520701728525'/><link rel='alternate' type='text/html' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html?showComment=1256908733957#c6439995520701728525' title=''/><author><name>sabri challouf</name><uri>http://www.blogger.com/profile/06349568943328817905</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.borovsak.si/2009/06/multi-threaded-gtk-applications.html' ref='tag:blogger.com,1999:blog-6666239544818473000.post-6602366842564851258' source='http://www.blogger.com/feeds/6666239544818473000/posts/default/6602366842564851258' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1752028918'/></entry></feed>
